diff options
author | lassulus <lass@blue.r> | 2018-09-17 10:10:53 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-09-17 10:10:53 +0200 |
commit | 9155ef1caa5e06dfa284d39ab7d9b21d67dcd2ce (patch) | |
tree | fdcd9d1139498a7241e8ab4f22af0ce0c4e42dec /krebs/5pkgs | |
parent | 1662e21c330506f17bf37c08cf50ad594637be94 (diff) | |
parent | 3b15b226ffa808a04790e6ac24a2f7c128b0347d (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r-- | krebs/5pkgs/simple/Reaktor/plugins.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/5pkgs/simple/Reaktor/plugins.nix b/krebs/5pkgs/simple/Reaktor/plugins.nix index 92a270ef3..2ccc1c8e9 100644 --- a/krebs/5pkgs/simple/Reaktor/plugins.nix +++ b/krebs/5pkgs/simple/Reaktor/plugins.nix @@ -120,7 +120,7 @@ rec { url-title = (buildSimpleReaktorPlugin "url-title" { pattern = "^.*(?P<args>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+).*$$"; path = with pkgs; [ curl perl ]; - script = pkgs.writePython3 "url-title" [ "beautifulsoup4" "lxml" ] '' + script = pkgs.writePython3 "url-title" { deps = [ "beautifulsoup4" "lxml" ]; } '' import cgi import sys import urllib.request |