linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-resource / default.nix
blob5cbbee77ae8ef0b1663fee310f4677a3dce6c45d
1 { pkgs
2 , buildPythonPackage
3 , fetchPypi
4 , azure-mgmt-core
5 , azure-mgmt-common
6 , isPy3k
7 }:
10 buildPythonPackage rec {
11   version = "16.0.0";
12   pname = "azure-mgmt-resource";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "0bdbdc9c1ed2ef975d8dff45f358d1e06dc6761eace5b6817f13993447e48a68";
19   };
21   propagatedBuildInputs = [
22     azure-mgmt-common
23     azure-mgmt-core
24   ];
26   # has no tests
27   doCheck = false;
29   pythonNamespaces = [ "azure.mgmt" ];
31   pythonImportsCheck = [ "azure.mgmt.resource" ];
33   meta = with pkgs.lib; {
34     description = "Microsoft Azure SDK for Python";
35     homepage = "https://github.com/Azure/azure-sdk-for-python";
36     license = licenses.mit;
37     maintainers = with maintainers; [ olcai maxwilson jonringer ];
38   };