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