ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-kusto / azure-mgmt-apimanagement / default.nix
blob4c61b55b666c9c25260154241421b3a4b4aac91f
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , azure-common
3 , msrest
4 , msrestazure
5 }:
7 buildPythonPackage rec {
8   version = "3.0.0";
9   pname = "azure-mgmt-apimanagement";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-kmL1TtOH6wg9ja5m0yqN81ZHMZuQK9SYzcN29QoS0VQ=";
15     extension = "zip";
16   };
18   propagatedBuildInputs = [ azure-common msrest msrestazure ];
20   # no tests included
21   doCheck = false;
23   pythonImportsCheck = [ "azure.common" "azure.mgmt.apimanagement" ];
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   };