11 buildPythonPackage rec {
12 pname = "hydra-check";
16 disabled = pythonOlder "3.10";
18 src = fetchFromGitHub {
19 owner = "nix-community";
22 sha256 = "sha256-voSbpOPJUPjwzdMLVt2TC/FIi6LKk01PLd/GczOAUR8=";
25 nativeBuildInputs = [ poetry-core ];
26 propagatedBuildInputs = [
32 pythonImportsCheck = [ "hydra_check" ];
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 ];