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