lol

python311Packages.azure-mgmt-cdn: 12.0.0 -> 13.0.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cdn_13.0.0/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md

+11 -13
+11 -13
pkgs/development/python-modules/azure-mgmt-cdn/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , msrest 5 - , msrestazure 6 2 , azure-common 7 - , azure-mgmt-nspkg 8 3 , azure-mgmt-core 9 - , isPy3k 4 + , buildPythonPackage 5 + , fetchPypi 6 + , isodate 7 + , pythonOlder 10 8 }: 11 9 12 10 buildPythonPackage rec { 13 11 pname = "azure-mgmt-cdn"; 14 - version = "12.0.0"; 12 + version = "13.0.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.8"; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - extension = "zip"; 19 - hash = "sha256-t8PuIYkjS0r1Gs4pJJJ8X9cz8950imQtbVBABnyMnd0="; 19 + hash = "sha256-yJ8jTeT4Gu23YSHl5GZ0+zdlC3s+GIxS4ir8z/HBkA4="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 - msrest 24 - msrestazure 23 + isodate 25 24 azure-common 26 25 azure-mgmt-core 27 - ] ++ lib.optionals (!isPy3k) [ 28 - azure-mgmt-nspkg 29 26 ]; 30 27 31 28 # has no tests ··· 34 31 meta = with lib; { 35 32 description = "This is the Microsoft Azure CDN Management Client Library"; 36 33 homepage = "https://github.com/Azure/azure-sdk-for-python"; 34 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cdn_${version}/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md"; 37 35 license = licenses.mit; 38 36 maintainers = with maintainers; [ maxwilson ]; 39 37 };