diff options
author | makefu <github@syntax-fehler.de> | 2019-04-04 09:11:33 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-04-04 09:11:33 +0200 |
commit | 966620d6c64bbb2a375e2dc30d8a70c636cd8864 (patch) | |
tree | 6fc57676a1d0348d4df5bf6c0dfebcebcf8152e5 /makefu/5pkgs/prison-break/default.nix | |
parent | 57850480ee30c57425581f0a6ad141e3a02dca48 (diff) |
ma pkgs.prison-break: init at 0.1.0
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 ]; +} |