nixpkgs/pkgs/development/python-modules/pywbem/default.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, libxml2
, m2crypto, ply, pyyaml, six, pbr, pythonOlder, isPy37
, httpretty, lxml, mock, pytest, requests, decorator, unittest2
2017-08-07 15:23:48 +00:00
}:
buildPythonPackage rec {
2018-01-01 10:49:50 +00:00
pname = "pywbem";
2019-10-24 06:47:46 +00:00
version = "0.14.6";
2017-08-07 15:23:48 +00:00
# Support added in master https://github.com/pywbem/pywbem/commit/b2f2f1a151a30355bbc6652dca69a7b30bfe941e awaiting release
disabled = isPy37;
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:46 +00:00
sha256 = "5ed6ac486a0a363848f2091a49ddc1c4e0871c6feb71766cc0e266e9c6fd084f";
2017-08-07 15:23:48 +00:00
};
propagatedBuildInputs = [
mock
pbr
ply
pyyaml
six
] ++ lib.optionals (pythonOlder "3.0") [ m2crypto ];
checkInputs = [
decorator
httpretty
libxml2
lxml
pytest
requests
unittest2
];
postPatch = ''
# Uses deprecated library yamlordereddictloader
rm testsuite/test_client.py
2017-08-07 15:23:48 +00:00
# Wants `wbemcli` in PATH
rm testsuite/test_wbemcli.py
# Disables tests that use testfixtures which is currently broken by nonbuilding zope_component
rm testsuite/{test_logging,test_recorder,test_wbemconnection_mock}.*
'';
2017-08-07 15:23:48 +00:00
checkPhase = ''
pytest testsuite/
2017-08-07 15:23:48 +00:00
'';
meta = with lib; {
description = "Support for the WBEM standard for systems management";
homepage = https://pywbem.github.io;
license = licenses.lgpl21Plus;
2017-08-07 15:23:48 +00:00
maintainers = with maintainers; [ peterhoeg ];
};
}