ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / hydra-check / default.nix
blob8c1fd56b8d3ae09d70c58addf3f8fa4be60b1c0d
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchFromGitHub
5 , poetry-core
6 , requests
7 , beautifulsoup4
8 , colorama
9 }:
11 buildPythonPackage rec {
12   pname = "hydra-check";
13   version = "1.3.4";
14   format = "pyproject";
16   disabled = pythonOlder "3.10";
18   src = fetchFromGitHub {
19     owner = "nix-community";
20     repo = pname;
21     rev = "v${version}";
22     sha256 = "sha256-voSbpOPJUPjwzdMLVt2TC/FIi6LKk01PLd/GczOAUR8=";
23   };
25   nativeBuildInputs = [ poetry-core ];
26   propagatedBuildInputs = [
27     colorama
28     requests
29     beautifulsoup4
30   ];
32   pythonImportsCheck = [ "hydra_check" ];
34   meta = with lib; {
35     description = "check hydra for the build status of a package";
36     homepage = "https://github.com/nix-community/hydra-check";
37     license = licenses.mit;
38     maintainers = with maintainers; [ makefu artturin ];
39   };