lol

Merge pull request #266631 from fabaff/azure-appconfiguration-bump

python311Packages.azure-appconfiguration: 1.4.0 -> 1.5.0

authored by

Fabian Affolter and committed by
GitHub
d01cf5e7 b756c485

+19 -7
+19 -7
pkgs/development/python-modules/azure-appconfiguration/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, azure-core 2 - , msrest 1 + { lib 2 + , pythonOlder 3 + , isodate 4 + , fetchPypi 5 + , buildPythonPackage 6 + , azure-core 3 7 }: 4 8 5 9 buildPythonPackage rec { 6 10 pname = "azure-appconfiguration"; 7 - version = "1.4.0"; 11 + version = "1.5.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 8 15 9 16 src = fetchPypi { 10 17 inherit pname version; 11 - extension = "zip"; 12 - hash = "sha256-fzZyT6j3K90FClJawf3o0F2TSMSu5pVqZvP8yJwTdBc="; 18 + hash = "sha256-cJIRe68GzY6T7ukhN+coF2m0AD/EFtSh7aZGuyVkAnw="; 13 19 }; 14 20 15 21 propagatedBuildInputs = [ 16 22 azure-core 17 - msrest 23 + isodate 18 24 ]; 19 25 20 - pythonImportsCheck = [ "azure.appconfiguration" ]; 26 + # Tests are not shipped 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ 30 + "azure.appconfiguration" 31 + ]; 21 32 22 33 meta = with lib; { 23 34 description = "Microsoft App Configuration Data Library for Python"; 24 35 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration"; 36 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-appconfiguration_${version}/sdk/appconfiguration/azure-appconfiguration/CHANGELOG.md"; 25 37 license = licenses.mit; 26 38 maintainers = with maintainers; [ jonringer ]; 27 39 };