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-04-17 18:46:12 +00:00
version = "1.0.0";
2019-04-04 07:11:33 +00:00
src = fetchFromGitHub {
owner = "makefu";
repo = pname;
2019-04-17 18:46:12 +00:00
rev = "1.0.0";
sha256 = "0ab42z6qr42vz4fc077irn9ykrrylagx1dzlw8dqcanf49dxd961";
2019-04-04 07:11:33 +00:00
};
propagatedBuildInputs = [
docopt
requests
beautifulsoup4
(callPackage ./straight-plugin.nix {})
];
checkInputs = [ black ];
}