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