Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, azure-common 3, azure-core 4, azure-storage-common 5, buildPythonPackage 6, cryptography 7, fetchPypi 8, isodate 9, msrest 10, pythonOlder 11, typing-extensions 12}: 13 14buildPythonPackage rec { 15 pname = "azure-storage-blob"; 16 version = "12.16.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 extension = "zip"; 24 hash = "sha256-Q7RfGaUYpcaJVjLyY7OCXrwjV08lzIS2bhYwphYORm8="; 25 }; 26 27 propagatedBuildInputs = [ 28 azure-common 29 azure-core 30 azure-storage-common 31 cryptography 32 isodate 33 msrest 34 typing-extensions 35 ]; 36 37 # Module has no tests 38 doCheck = false; 39 40 meta = with lib; { 41 description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; 42 homepage = "https://github.com/Azure/azure-sdk-for-python"; 43 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_${version}/sdk/storage/azure-storage-blob/CHANGELOG.md"; 44 license = licenses.mit; 45 maintainers = with maintainers; [ cmcdragonkai maxwilson ]; 46 }; 47}