Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-botservice / default.nix
blobead8dbd3f015300c34edea23ef48b409de24733b
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , azure-common
3 , msrest
4 , msrestazure
5 }:
7 buildPythonPackage rec {
8   version = "0.3.0";
9   pname = "azure-mgmt-botservice";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "f8318878a66a0685a01bf27b7d1409c44eb90eb72b0a616c1a2455c72330f2f1";
15     extension = "zip";
16   };
18   propagatedBuildInputs = [ azure-common msrest msrestazure ];
20   # no tests included
21   doCheck = false;
23   pythonImportsCheck = [ "azure.common" "azure.mgmt.botservice" ];
25   meta = with lib; {
26     description = "Microsoft Azure API Management Client Library for Python";
27     homepage = "https://github.com/Azure/azure-sdk-for-python";
28     license = licenses.mit;
29     maintainers = with maintainers; [ jonringer ];
30   };