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