ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-devtestlabs / default.nix
blobdab22d1e065cfcfa4f67219b090b7ac2a0b2b935
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPy3k,
6   msrest,
7   msrestazure,
8   azure-common,
9   azure-mgmt-core,
10   azure-mgmt-nspkg,
13 buildPythonPackage rec {
14   pname = "azure-mgmt-devtestlabs";
15   version = "9.0.0";
16   format = "setuptools";
18   src = fetchPypi {
19     inherit pname version;
20     extension = "zip";
21     sha256 = "d8160d93fd3d947e5613c6919176b0edf72c94ac69679ea3b92cf27ff7398e64";
22   };
24   propagatedBuildInputs = [
25     msrest
26     msrestazure
27     azure-common
28     azure-mgmt-core
29   ] ++ lib.optionals (!isPy3k) [ azure-mgmt-nspkg ];
31   pythonNamespaces = [ "azure.mgmt" ];
33   # has no tests
34   doCheck = false;
36   meta = with lib; {
37     description = "This is the Microsoft Azure DevTestLabs Management Client Library";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     license = licenses.mit;
40     maintainers = with maintainers; [
41       maxwilson
42     ];
43   };