diff options
author | lassulus <lassulus@lassul.us> | 2018-05-04 20:30:51 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-05-04 20:30:51 +0200 |
commit | 5fe30a149d649b24cb0c55e398064adfce51614c (patch) | |
tree | 06a85771018034355f1e5a51a98416990a913dd0 /lass/5pkgs/nichtparasoup/default.nix | |
parent | f4c7c3ebdce7c4a248140d20464fbdf65ea0c921 (diff) |
l: init nichtparasoup
Diffstat (limited to 'lass/5pkgs/nichtparasoup/default.nix')
-rw-r--r-- | lass/5pkgs/nichtparasoup/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lass/5pkgs/nichtparasoup/default.nix b/lass/5pkgs/nichtparasoup/default.nix new file mode 100644 index 000000000..cf34c683f --- /dev/null +++ b/lass/5pkgs/nichtparasoup/default.nix @@ -0,0 +1,25 @@ +{ stdenv, pkgs, ... }: +let + py = pkgs.python3Packages.python.withPackages (p: [ + p.werkzeug + p.beautifulsoup4 + ]); + src = pkgs.fetchFromGitHub { + owner = "k4cg"; + repo = "nichtparasoup"; + rev = "cf164b5"; + sha256 = "09bwh76agp14j8rv7bp47jcwhffc1b0bak0ikvzxyphph5lyidk9"; + }; + patchedSrc = stdenv.mkDerivation { + name = "nichtparasoup"; + inherit src; + patches = [ ./exception.patch ]; + phases = [ "unpackPhase" "patchPhase" "installPhase" ]; + installPhase = '' + mkdir -p $out + cp -r * $out/ + ''; + }; +in pkgs.writeDashBin "nichtparasoup" '' + ${py}/bin/python ${patchedSrc}/nichtparasoup.py "$@" +'' |