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