summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/custom/hydra-check/default.nix
blob: 512ceec9f4bd8a1c1622e02ba36243a16f354844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ docopt, requests, beautifulsoup4, fetchFromGitHub, buildPythonPackage }:

buildPythonPackage rec {
  name = "hydra-check";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "makefu";
    repo = "hydra-check";
    rev = version;
    sha256 = "0359s9rvl2q23a3yddhbn6w2sd5r1f1jl6whyik7qql7blpcvyi7";
  };
  propagatedBuildInputs = [
    docopt
    requests
    beautifulsoup4
  ];
  doCheck = false; # no tests
}