linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-compute / default.nix
blob2bfa56dc81c583810a4865235bb44c72d670198c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-mgmt-common
5 , azure-mgmt-core
6 }:
8 buildPythonPackage rec {
9   version = "19.0.0";
10   pname = "azure-mgmt-compute";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "65afe759c6ee87dd89d65d59c8da4b2c04d197c07c1fbfdc56ef1aea468e4525";
16   };
18   propagatedBuildInputs = [
19     azure-mgmt-common
20     azure-mgmt-core
21   ];
23   pythonNamespaces = [ "azure.mgmt" ];
25   # has no tests
26   doCheck = false;
28   meta = with lib; {
29     description = "This is the Microsoft Azure Compute Management Client Library";
30     homepage = "https://github.com/Azure/azure-sdk-for-python";
31     license = licenses.mit;
32     maintainers = with maintainers; [ olcai maxwilson ];
33   };