Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-trafficmanager / default.nix
blobe2ae6c3e9cf57ead3556a9bf05ecae304c836862
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , azure-mgmt-nspkg
9 , isPy3k
12 buildPythonPackage rec {
13   pname = "azure-mgmt-trafficmanager";
14   version = "1.1.0";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     hash = "sha256-Nb8ZAr8VidYm41lx5aqgCeiECUZytHm3mM0buNTy/fk=";
21   };
23   propagatedBuildInputs = [
24     msrest
25     msrestazure
26     azure-common
27     azure-mgmt-core
28   ] ++ lib.optionals (!isPy3k) [
29     azure-mgmt-nspkg
30   ];
32   # has no tests
33   doCheck = false;
35   meta = with lib; {
36     description = "This is the Microsoft Azure Traffic Manager Client Library";
37     homepage = "https://github.com/Azure/azure-sdk-for-python";
38     license = licenses.mit;
39     maintainers = with maintainers; [ maxwilson ];
40   };