diff options
author | lassulus <lassulus@lassul.us> | 2019-04-08 17:13:47 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-08 17:13:47 +0200 |
commit | 8df36824c35e0573c966b355264816dbef63a05b (patch) | |
tree | 2e757d9146b1e22c5f3e1c8426bd2ad8fc099dfd /makefu/5pkgs/prison-break/default.nix | |
parent | 9e7729def580d83bc439985616f8c5d7162bcd48 (diff) | |
parent | 2f53271af0fda00bdc452c2bc5e569f064f562f6 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/5pkgs/prison-break/default.nix')
-rw-r--r-- | makefu/5pkgs/prison-break/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/makefu/5pkgs/prison-break/default.nix b/makefu/5pkgs/prison-break/default.nix new file mode 100644 index 000000000..f86ac3762 --- /dev/null +++ b/makefu/5pkgs/prison-break/default.nix @@ -0,0 +1,20 @@ +{pkgs, fetchFromGitHub}: +with pkgs.python3.pkgs; + +buildPythonPackage rec { + pname = "prison-break"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "makefu"; + repo = pname; + rev = "5eed6371e151e716faafa054e005bd98d77b4b5d"; + sha256 = "170zs9grbgkx83ghg6pm13v7vhi604y44j550ypp2x26nidaw63j"; + }; + propagatedBuildInputs = [ + docopt + requests + beautifulsoup4 + (callPackage ./straight-plugin.nix {}) + ]; + checkInputs = [ black ]; +} |