lol

python311Packages.azure-mgmt-recoveryservices: 2.4.0 -> 2.5.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-recoveryservices_2.5.0/sdk/recoveryservices/azure-mgmt-recoveryservices/CHANGELOG.md

+7 -9
+7 -9
pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , msrest 5 - , msrestazure 6 2 , azure-common 7 3 , azure-mgmt-core 4 + , buildPythonPackage 5 + , fetchPypi 6 + , isodate 8 7 , pythonOlder 9 8 , typing-extensions 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "azure-mgmt-recoveryservices"; 14 - version = "2.4.0"; 13 + version = "2.5.0"; 15 14 format = "setuptools"; 16 15 17 16 disabled = pythonOlder "3.7"; 18 17 19 18 src = fetchPypi { 20 19 inherit pname version; 21 - extension = "zip"; 22 - hash = "sha256-2JeOvtNxx6Z3AY4GI9fBRKbMcYVHsbrhk8C+5t5eelk="; 20 + hash = "sha256-XxowjEhYx5uD/4vY5hGSCSvcarmdbdc5Y2GLHciEurU="; 23 21 }; 24 22 25 23 propagatedBuildInputs = [ 26 24 azure-common 27 25 azure-mgmt-core 28 - msrest 29 - msrestazure 26 + isodate 30 27 ] ++ lib.optionals (pythonOlder "3.8") [ 31 28 typing-extensions 32 29 ]; ··· 41 38 meta = with lib; { 42 39 description = "This is the Microsoft Azure Recovery Services Client Library"; 43 40 homepage = "https://github.com/Azure/azure-sdk-for-python"; 41 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-recoveryservices_${version}/sdk/recoveryservices/azure-mgmt-recoveryservices/CHANGELOG.md"; 44 42 license = licenses.mit; 45 43 maintainers = with maintainers; [ maxwilson ]; 46 44 };