{ lib, buildPythonPackage, fetchPypi, isPy27 , azure-common , azure-core , msrest , msrestazure , requests }: buildPythonPackage rec { version = "0.7.0"; pname = "azure-multiapi-storage"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "cd4f184be8c9ca8aca969f93ed50dc7fe556d28ca11520440fc182cf876abdf9"; }; 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 ]; }; }