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