stockholm/makefu/5pkgs/prison-break/default.nix

22 lines
448 B
Nix
Raw Normal View History

2019-04-04 07:11:33 +00:00
{pkgs, fetchFromGitHub}:
with pkgs.python3.pkgs;
buildPythonPackage rec {
pname = "prison-break";
2021-10-01 18:13:11 +00:00
version = "1.5.0";
2019-04-04 07:11:33 +00:00
src = fetchFromGitHub {
owner = "makefu";
repo = pname;
2019-05-08 11:56:33 +00:00
rev = version;
2021-10-01 18:13:11 +00:00
sha256 = "sha256:0gk7g5k9hzscsdkddm6978m43f4cdv2nzr47sclhjl7g2x7v97pm";
2019-04-04 07:11:33 +00:00
};
propagatedBuildInputs = [
docopt
requests
beautifulsoup4
2021-10-01 18:13:11 +00:00
notify2
2019-04-04 07:11:33 +00:00
(callPackage ./straight-plugin.nix {})
];
checkInputs = [ black ];
}