nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.11 38 lines 829 B view raw
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 12buildPythonPackage rec { 13 pname = "azure-storage-blob"; 14 version = "12.9.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 sha256 = "cff66a115c73c90e496c8c8b3026898a3ce64100840276e9245434e28a864225"; 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 }; 38}