{ lib , buildPythonPackage , fetchPypi , python , azure-mgmt-common , azure-mgmt-core , isPy3k }: buildPythonPackage rec { version = "17.1.0"; pname = "azure-mgmt-storage"; disabled = !isPy3k; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "01acb8e988c8082174fa952e1638d700146185644fbe4b126e65843e63d44600"; }; propagatedBuildInputs = [ azure-mgmt-common azure-mgmt-core ]; pythonNamespaces = [ "azure.mgmt" ]; pythonImportsCheck = [ "azure.mgmt.storage" ]; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure Storage Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer olcai maxwilson ]; }; }