{ lib, buildPythonPackage, fetchPypi, isPy27 , azure-common , azure-mgmt-core , msrest , msrestazure }: buildPythonPackage rec { version = "1.0.0"; pname = "azure-mgmt-botservice"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "9dae4d749a2a072e22703318ea36e379aec20876c553b2889037c7bdec4b9546"; extension = "zip"; }; propagatedBuildInputs = [ azure-common azure-mgmt-core msrest msrestazure ]; # no tests included doCheck = false; pythonImportsCheck = [ "azure.common" "azure.mgmt.botservice" ]; 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 ]; }; }