nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 msrest,
7 azure-common,
8 azure-mgmt-core,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-reservations";
13 version = "2.3.0";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 hash = "sha256-BHCFEFst5jfyIEo0hm86belpxW7EygZCBJ8PTqzqHKc=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [
25 msrest
26 azure-common
27 azure-mgmt-core
28 ];
29
30 # has no tests
31 doCheck = false;
32
33 meta = {
34 description = "This is the Microsoft Azure Reservations Client Library";
35 homepage = "https://github.com/Azure/azure-sdk-for-python";
36 license = lib.licenses.mit;
37 maintainers = with lib.maintainers; [ maxwilson ];
38 };
39}