5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
71 lines
1.1 KiB
Nix
71 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
decorator,
|
|
fetchPypi,
|
|
formencode,
|
|
httpretty,
|
|
libxml2,
|
|
lxml,
|
|
mock,
|
|
nocasedict,
|
|
nocaselist,
|
|
pbr,
|
|
ply,
|
|
pytest,
|
|
pythonOlder,
|
|
pytz,
|
|
pyyaml,
|
|
requests,
|
|
requests-mock,
|
|
six,
|
|
testfixtures,
|
|
yamlloader,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywbem";
|
|
version = "1.7.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-3Dt4WEABf1/LY4HFZoJZjOu/yEUYUXaPheIxioTga2g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mock
|
|
nocasedict
|
|
nocaselist
|
|
pbr
|
|
ply
|
|
pyyaml
|
|
six
|
|
yamlloader
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
decorator
|
|
formencode
|
|
httpretty
|
|
libxml2
|
|
lxml
|
|
pytest
|
|
pytz
|
|
requests
|
|
requests-mock
|
|
testfixtures
|
|
];
|
|
|
|
pythonImportsCheck = [ "pywbem" ];
|
|
|
|
meta = with lib; {
|
|
description = "Support for the WBEM standard for systems management";
|
|
homepage = "https://pywbem.github.io";
|
|
changelog = "https://github.com/pywbem/pywbem/blob/${version}/docs/changes.rst";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|