depot/third_party/nixpkgs/pkgs/development/python-modules/python-hpilo/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
709 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "python-hpilo";
version = "4.4.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "seveas";
repo = pname;
rev = version;
sha256 = "1dk5xswydw7nmn9hlna1xca1mzcas9qv2kmid5yx8kvk3hjqci9v";
};
# Most tests requires an actual iLO to run
doCheck = false;
pythonImportsCheck = [ "hpilo" ];
meta = with lib; {
description = "Python module to access the HP iLO XML interface";
mainProgram = "hpilo_cli";
homepage = "https://seveas.github.io/python-hpilo/";
license = with licenses; [
asl20
gpl3Plus
];
maintainers = with maintainers; [ fab ];
};
}