python3Packages.pyghmi: init at 1.5.77 (#383866)
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
wheel,
|
||||
cryptography,
|
||||
python-dateutil,
|
||||
six,
|
||||
pbr,
|
||||
coverage,
|
||||
oslotest,
|
||||
stestr,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyghmi";
|
||||
version = "1.5.76";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-nJEL9x/+fZT/vpAKL5qVLXYVPcMvUXT9WSEvHzOrGZU=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
pbr
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
coverage
|
||||
oslotest
|
||||
stestr
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
cryptography
|
||||
python-dateutil
|
||||
six
|
||||
pbr
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pyghmi" ];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
stestr run
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Pure Python (mostly IPMI) server management library";
|
||||
homepage = "https://opendev.org/x/pyghmi/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ codgician ];
|
||||
};
|
||||
}
|
||||
@@ -12235,6 +12235,8 @@ self: super: with self; {
|
||||
|
||||
pygetwindow = callPackage ../development/python-modules/pygetwindow { };
|
||||
|
||||
pyghmi = callPackage ../development/python-modules/pyghmi { };
|
||||
|
||||
pygit2 = callPackage ../development/python-modules/pygit2 { };
|
||||
|
||||
pygitguardian = callPackage ../development/python-modules/pygitguardian { };
|
||||
|
||||
Reference in New Issue
Block a user