nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 45 lines 989 B view raw
1{ 2 lib, 3 azure-core, 4 buildPythonPackage, 5 cryptography, 6 fetchPypi, 7 isodate, 8 setuptools, 9 typing-extensions, 10}: 11 12buildPythonPackage rec { 13 pname = "azure-storage-blob"; 14 version = "12.28.0"; 15 pyproject = true; 16 17 src = fetchPypi { 18 pname = "azure_storage_blob"; 19 inherit version; 20 hash = "sha256-59mOoQgljSmqDvv9WRsuIHX6FyKi+uhpnws8neEe/0E="; 21 }; 22 23 build-system = [ setuptools ]; 24 25 dependencies = [ 26 azure-core 27 cryptography 28 isodate 29 typing-extensions 30 ]; 31 32 # Module has no tests 33 doCheck = false; 34 35 meta = { 36 description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; 37 homepage = "https://github.com/Azure/azure-sdk-for-python"; 38 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_${version}/sdk/storage/azure-storage-blob/CHANGELOG.md"; 39 license = lib.licenses.mit; 40 maintainers = with lib.maintainers; [ 41 cmcdragonkai 42 maxwilson 43 ]; 44 }; 45}