Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, azure-mgmt-common 5, azure-mgmt-core 6, pythonOlder 7}: 8 9buildPythonPackage rec { 10 pname = "azure-mgmt-storage"; 11 version = "21.1.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-1tPA6RfJiLye0Eckd9PvP5CIYAnrHZenEZRPg3VjAWI="; 19 }; 20 21 propagatedBuildInputs = [ 22 azure-mgmt-common 23 azure-mgmt-core 24 ]; 25 26 pythonNamespaces = [ 27 "azure.mgmt" 28 ]; 29 30 pythonImportsCheck = [ 31 "azure.mgmt.storage" 32 ]; 33 34 # Module has no tests 35 doCheck = false; 36 37 meta = with lib; { 38 description = "This is the Microsoft Azure Storage Management Client Library"; 39 homepage = "https://github.com/Azure/azure-sdk-for-python"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ jonringer olcai maxwilson ]; 42 }; 43}