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

python310Packages.azure-mgmt-network: 19.3.0 -> 20.0.0
main
Fabian Affolter 2 years ago committed by GitHub
commit b0c6c8c92b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      pkgs/development/python-modules/azure-mgmt-network/default.nix

@ -5,18 +5,20 @@
, azure-mgmt-core
, msrest
, msrestazure
, isPy3k
, pythonOlder
}:
buildPythonPackage rec {
version = "19.3.0";
version = "20.0.0";
pname = "azure-mgmt-network";
disabled = !isPy3k;
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0b6a1ccdffd76e057ab16a6c319740a0ca68d59fedf7e9c02f2437396e72aa11";
hash = "sha256-mnjPyCAJ+rlNgZ4umSYjfVVVg83EobZYY/zupyDjdoY=";
};
propagatedBuildInputs = [
@ -26,12 +28,16 @@ buildPythonPackage rec {
msrestazure
];
# has no tests
# Module has no tests
doCheck = false;
pythonNamespaces = [ "azure.mgmt" ];
pythonNamespaces = [
"azure.mgmt"
];
pythonImportsCheck = [ "azure.mgmt.network" ];
pythonImportsCheck = [
"azure.mgmt.network"
];
meta = with lib; {
description = "Microsoft Azure SDK for Python";

Loading…
Cancel
Save