Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 33 lines 769 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, azure-common 5, azure-storage-common 6, isPy3k 7, futures 8}: 9 10buildPythonPackage rec { 11 pname = "azure-storage-blob"; 12 version = "1.4.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "65ebe2e54460566c2077c6b3773a2a0623eabc7b95602010cb51b84077087fda"; 17 }; 18 19 propagatedBuildInputs = [ 20 azure-common 21 azure-storage-common 22 ] ++ lib.optional (!isPy3k) futures; 23 24 # has no tests 25 doCheck = false; 26 27 meta = with lib; { 28 description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; 29 homepage = https://github.com/Azure/azure-storage-python/tree/master/azure-storage-blob; 30 license = licenses.mit; 31 maintainers = with maintainers; [ cmcdragonkai ]; 32 }; 33}