{ lib, buildPythonPackage, fetchPypi, isPy27 , azure-common , msrest , msrestazure }: buildPythonPackage rec { version = "0.2.0"; pname = "azure-mgmt-apimanagement"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "790f01c0b32583706b8b8c59667c0f5a51cd70444eee76474e23a598911e1d72"; extension = "zip"; }; propagatedBuildInputs = [ azure-common msrest msrestazure ]; # no tests included doCheck = false; pythonImportsCheck = [ "azure.common" "azure.mgmt.apimanagement" ]; meta = with lib; { description = "Microsoft Azure API Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }