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

21 lines
429 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";
2019-05-11 09:34:15 +00:00
version = "1.2.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;
2019-05-11 09:34:15 +00:00
sha256 = "07wy6f06vj9s131c16gw1xl1jf9gq5xiqia8awfb26s99gxlv7l9";
2019-04-04 07:11:33 +00:00
};
propagatedBuildInputs = [
docopt
requests
beautifulsoup4
(callPackage ./straight-plugin.nix {})
];
checkInputs = [ black ];
}