Merge pull request #208656 from WolfangAukang/azure-storage-blob

python3Packages.azure-storage-blob: 12.13.1 -> 12.14.1

authored by Fabian Affolter and committed by GitHub 1f103b8f 71df3d7f

+17 -8
+17 -8
pkgs/development/python-modules/azure-storage-blob/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 2 , azure-common 5 3 , azure-core 6 4 , azure-storage-common 5 + , buildPythonPackage 6 + , cryptography 7 + , fetchPypi 8 + , isodate 7 9 , msrest 8 - , isPy3k 9 - , futures ? null 10 + , pythonOlder 11 + , typing-extensions 10 12 }: 11 13 12 14 buildPythonPackage rec { 13 15 pname = "azure-storage-blob"; 14 - version = "12.13.1"; 16 + version = "12.14.1"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 15 20 16 21 src = fetchPypi { 17 22 inherit pname version; 18 23 extension = "zip"; 19 - sha256 = "sha256-iZxLjiZxgS0s948QdVaifbsSjKqiuwYJTnKj1YNnQK8="; 24 + hash = "sha256-hg1NgphaS/x9MnHnEnWvMw9U8zCnVDVUNae6dJzN6Zc="; 20 25 }; 21 26 22 27 propagatedBuildInputs = [ 23 28 azure-common 24 29 azure-core 25 30 azure-storage-common 31 + cryptography 32 + isodate 26 33 msrest 27 - ] ++ lib.optional (!isPy3k) futures; 34 + typing-extensions 35 + ]; 28 36 29 - # has no tests 37 + # Module has no tests 30 38 doCheck = false; 31 39 32 40 meta = with lib; { 33 41 description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; 34 42 homepage = "https://github.com/Azure/azure-sdk-for-python"; 43 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_${version}/sdk/storage/azure-storage-blob/CHANGELOG.md"; 35 44 license = licenses.mit; 36 45 maintainers = with maintainers; [ cmcdragonkai maxwilson ]; 37 46 };