{ lib , buildPythonPackage , fetchPypi , python , azure-mgmt-common , isPy3k }: buildPythonPackage rec { version = "10.0.0"; pname = "azure-mgmt-storage"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "d1edead1ad36e957c9f9b605f547ad1ff7152f8f785fa03d3c7891bb428a68ef"; }; propagatedBuildInputs = [ azure-mgmt-common ]; pythonNamespaces = [ "azure.mgmt" ]; # 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 mwilsoninsight ]; }; }