Merge pull request #212578 from r-ryantm/auto-update/python310Packages.pywbem

python310Packages.pywbem: 1.5.0 -> 1.6.0

authored by

Fabian Affolter and committed by
GitHub
bdbdd06d dad8a122

+23 -17
+23 -17
pkgs/development/python-modules/pywbem/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , decorator 3 4 , fetchPypi 4 - , libxml2 5 - , m2crypto 6 - , ply 7 - , pyyaml 8 - , six 9 - , pbr 10 - , pythonOlder 11 - , nocasedict 12 - , nocaselist 13 - , yamlloader 14 - , requests-mock 5 + , FormEncode 15 6 , httpretty 7 + , libxml2 16 8 , lxml 17 9 , mock 10 + , nocasedict 11 + , nocaselist 12 + , pbr 13 + , ply 18 14 , pytest 15 + , pythonOlder 16 + , pytz 17 + , pyyaml 19 18 , requests 20 - , decorator 21 - , FormEncode 19 + , requests-mock 20 + , six 22 21 , testfixtures 23 - , pytz 22 + , yamlloader 24 23 }: 25 24 26 25 buildPythonPackage rec { 27 26 pname = "pywbem"; 28 - version = "1.5.0"; 27 + version = "1.6.0"; 29 28 format = "setuptools"; 30 29 30 + disabled = pythonOlder "3.7"; 31 + 31 32 src = fetchPypi { 32 33 inherit pname version; 33 - sha256 = "sha256-xffkWMJTDGE1j7xjM750+vNmqs546uM3QUMSZ63zJhA="; 34 + hash = "sha256-4mqwMkR17lMp10lx+UK0sxW2rA7a8njnDha1YDJ475g="; 34 35 }; 35 36 36 37 propagatedBuildInputs = [ ··· 42 43 pyyaml 43 44 six 44 45 yamlloader 45 - ] ++ lib.optionals (pythonOlder "3.0") [ m2crypto ]; 46 + ]; 46 47 47 48 nativeCheckInputs = [ 48 49 decorator ··· 57 58 testfixtures 58 59 ]; 59 60 61 + pythonImportsCheck = [ 62 + "pywbem" 63 + ]; 64 + 60 65 meta = with lib; { 61 66 description = "Support for the WBEM standard for systems management"; 62 67 homepage = "https://pywbem.github.io"; 68 + changelog = "https://github.com/pywbem/pywbem/blob/${version}/docs/changes.rst"; 63 69 license = licenses.lgpl21Plus; 64 70 maintainers = with maintainers; [ peterhoeg ]; 65 71 };