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
, azure-common
, azure-mgmt-core
, msrest
, msrestazure
, isodate
}:
buildPythonPackage rec {
pname = "azure-mgmt-netapp";
version = "10.1.0";
version = "11.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-eJiWTOCk2C79Jotku9bKlu3vU6H8004hWrX+h76MjQM=";
extension = "zip";
hash = "sha256-00cDFHpaEciRQLHM+Kt3uOtw/geOn5+onrY7lav6EeU=";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
isodate
];
# no tests included
@ -39,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Microsoft Azure NetApp Files Management Client Library 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;
maintainers = with maintainers; [ jonringer ];
};