Merge pull request #172434 from r-ryantm/auto-update/python3.10-azure-mgmt-network

python310Packages.azure-mgmt-network: 19.3.0 -> 20.0.0

authored by

Fabian Affolter and committed by
GitHub
b0c6c8c9 6936329c

+13 -7
+13 -7
pkgs/development/python-modules/azure-mgmt-network/default.nix
··· 5 5 , azure-mgmt-core 6 6 , msrest 7 7 , msrestazure 8 - , isPy3k 8 + , pythonOlder 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 - version = "19.3.0"; 12 + version = "20.0.0"; 13 13 pname = "azure-mgmt-network"; 14 - disabled = !isPy3k; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.6"; 15 17 16 18 src = fetchPypi { 17 19 inherit pname version; 18 20 extension = "zip"; 19 - sha256 = "0b6a1ccdffd76e057ab16a6c319740a0ca68d59fedf7e9c02f2437396e72aa11"; 21 + hash = "sha256-mnjPyCAJ+rlNgZ4umSYjfVVVg83EobZYY/zupyDjdoY="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [ ··· 26 28 msrestazure 27 29 ]; 28 30 29 - # has no tests 31 + # Module has no tests 30 32 doCheck = false; 31 33 32 - pythonNamespaces = [ "azure.mgmt" ]; 34 + pythonNamespaces = [ 35 + "azure.mgmt" 36 + ]; 33 37 34 - pythonImportsCheck = [ "azure.mgmt.network" ]; 38 + pythonImportsCheck = [ 39 + "azure.mgmt.network" 40 + ]; 35 41 36 42 meta = with lib; { 37 43 description = "Microsoft Azure SDK for Python";