at 23.11-beta 40 lines 951 B view raw
1{ lib 2, azure-core 3, buildPythonPackage 4, cryptography 5, fetchPypi 6, isodate 7, pythonOlder 8, typing-extensions 9}: 10 11buildPythonPackage rec { 12 pname = "azure-storage-blob"; 13 version = "12.18.2"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 hash = "sha256-4Rk1NImB/8AFuEi1XbJcBPLR+Q4e4zAAZZkGt2PPFMg="; 21 }; 22 23 propagatedBuildInputs = [ 24 azure-core 25 cryptography 26 isodate 27 typing-extensions 28 ]; 29 30 # Module has no tests 31 doCheck = false; 32 33 meta = with lib; { 34 description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; 35 homepage = "https://github.com/Azure/azure-sdk-for-python"; 36 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_${version}/sdk/storage/azure-storage-blob/CHANGELOG.md"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ cmcdragonkai maxwilson ]; 39 }; 40}