Merge pull request #263577 from fabaff/azure-mgmt-netapp-bump

python311Packages.azure-mgmt-netapp: 10.1.0 -> 11.0.0
This commit is contained in:
Fabian Affolter 2023-10-30 08:16:32 +01:00 committed by GitHub
commit 65c2538b25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,28 +4,25 @@
, pythonOlder , pythonOlder
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, msrest , isodate
, msrestazure
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-netapp"; pname = "azure-mgmt-netapp";
version = "10.1.0"; version = "11.0.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-eJiWTOCk2C79Jotku9bKlu3vU6H8004hWrX+h76MjQM="; hash = "sha256-00cDFHpaEciRQLHM+Kt3uOtw/geOn5+onrY7lav6EeU=";
extension = "zip";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-common
azure-mgmt-core azure-mgmt-core
msrest isodate
msrestazure
]; ];
# no tests included # no tests included
@ -39,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Microsoft Azure NetApp Files Management Client Library for Python"; description = "Microsoft Azure NetApp Files Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-netapp_${version}/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jonringer ]; maintainers = with maintainers; [ jonringer ];
}; };