aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-mgmt-reservations/default.nix
blob: 1d4ef5b97524c143a9617d3c204d8afb738ddb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, buildPythonPackage, fetchPypi
, azure-common
, azure-mgmt-nspkg
, msrestazure
}:

buildPythonPackage rec {
  pname = "azure-mgmt-reservations";
  version = "0.2.1";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "0wf1da3f4w3yalkylxv5ifq1bpsyk26j77v4ha0phyn400vqlqa0";
  };

  propagatedBuildInputs = [
    azure-common
    azure-mgmt-nspkg
    msrestazure
  ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Microsoft Azure Reservations Client Library for Python";
    homepage = https://github.com/Azure/azure-sdk-for-python;
    license = licenses.mit;
    maintainers = with maintainers; [ stesie ];
  };
}