{ lib, buildPythonPackage, fetchPypi, isPy27 , azure-common , azure-core , msrest , msrestazure , requests }: buildPythonPackage rec { version = "0.6.0"; pname = "azure-multiapi-storage"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "d805a91b295edf52057ffab26b714160905406bdd5d7a1a3f93f6cdc3ede8412"; }; propagatedBuildInputs = [ azure-common azure-core msrest msrestazure requests ]; # fix namespace pythonNamespaces = [ "azure.multiapi" ]; # no tests included doCheck = false; pythonImportsCheck = [ "azure.common" "azure.multiapi.storage" ]; meta = with lib; { description = "Microsoft Azure Storage Client Library for Python with multi API version support."; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }