depot/third_party/nixpkgs/pkgs/development/python-modules/hydra-check/default.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

40 lines
830 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, requests
, beautifulsoup4
, colorama
}:
buildPythonPackage rec {
pname = "hydra-check";
version = "1.3.5";
format = "pyproject";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "nix-community";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-fRSC+dfZZSBBeN6YidXRKc1kPUbBKz5OiFSHGOSikgI=";
};
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 ];
};
}