python3Packages.python-hpilo: init at 4.4.3

This commit is contained in:
Fabian Affolter
2021-01-16 23:55:48 +01:00
parent 0aa29da6d2
commit 8c58c96c9e
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, utils
}:
buildPythonPackage rec {
pname = "python-hpilo";
version = "4.4.3";
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";
homepage = "https://seveas.github.io/python-hpilo/";
license = with licenses; [ asl20 gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}