Unverified Commit 65c2538b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.azure-mgmt-netapp: 10.1.0 -> 11.0.0
parents 720e9b08 1194ff06
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -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 ];
  };