stockholm/krebs/5pkgs/simple/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-08 11:56:33 +00:00
version = "1.0.1";
2019-04-04 07:11:33 +00:00
src = fetchFromGitHub {
owner = "makefu";
repo = pname;
2019-05-08 11:56:33 +00:00
rev = version;
sha256 = "1q9bw1hbz0cayclixplyc85kaq05mg6n2zz8mbydljvknidd4p6a";
2019-04-04 07:11:33 +00:00
};
propagatedBuildInputs = [
docopt
requests
beautifulsoup4
(callPackage ./straight-plugin.nix {})
];
checkInputs = [ black ];
}