stockholm/makefu/5pkgs/custom/hydra-check/default.nix

20 lines
422 B
Nix
Raw Normal View History

2020-03-13 09:39:32 +00:00
{ docopt, requests, beautifulsoup4, fetchFromGitHub, buildPythonPackage }:
2020-03-13 09:34:29 +00:00
buildPythonPackage rec {
name = "hydra-check";
version = "1.0.0";
src = fetchFromGitHub {
owner = "makefu";
repo = "hydra-check";
rev = version;
sha256 = "0359s9rvl2q23a3yddhbn6w2sd5r1f1jl6whyik7qql7blpcvyi7";
};
propagatedBuildInputs = [
docopt
requests
beautifulsoup4
];
2020-03-13 09:39:32 +00:00
doCheck = false; # no tests
2020-03-13 09:34:29 +00:00
}