summary refs log tree commit diff
path: root/pkgs/development/python-modules/hydra-check/default.nix
blob: 8c1fd56b8d3ae09d70c58addf3f8fa4be60b1c0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, requests
, beautifulsoup4
, colorama
}:

buildPythonPackage rec {
  pname = "hydra-check";
  version = "1.3.4";
  format = "pyproject";

  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "nix-community";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-voSbpOPJUPjwzdMLVt2TC/FIi6LKk01PLd/GczOAUR8=";
  };

  nativeBuildInputs = [ poetry-core ];
  propagatedBuildInputs = [
    colorama
    requests
    beautifulsoup4
  ];

  pythonImportsCheck = [ "hydra_check" ];

  meta = with lib; {
    description = "check hydra for the build status of a package";
    homepage = "https://github.com/nix-community/hydra-check";
    license = licenses.mit;
    maintainers = with maintainers; [ makefu artturin ];
  };
}