1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 azure-common, 6 cryptography, 7 python-dateutil, 8 requests, 9 isPy3k, 10 azure-storage-nspkg, 11}: 12 13buildPythonPackage rec { 14 pname = "azure-storage-common"; 15 version = "2.1.0"; 16 format = "setuptools"; 17 18 src = fetchPypi { 19 inherit pname version; 20 sha256 = "ccedef5c67227bc4d6670ffd37cec18fb529a1b7c3a5e53e4096eb0cf23dc73f"; 21 }; 22 23 propagatedBuildInputs = [ 24 azure-common 25 cryptography 26 python-dateutil 27 requests 28 ] ++ lib.optional (!isPy3k) azure-storage-nspkg; 29 30 # has no tests 31 doCheck = false; 32 33 meta = with lib; { 34 description = "Client library for Microsoft Azure Storage services containing common code shared by blob, file and queue"; 35 homepage = "https://github.com/Azure/azure-sdk-for-python"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ cmcdragonkai ]; 38 }; 39}