blob: 0b97806298f21b209637de42c0ccde901276ff47 (
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
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchPypi,
msrest,
msrestazure,
azure-common,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-graphrbac";
version = "0.61.2";
pyproject = true;
src = fetchPypi {
pname = "azure_graphrbac";
inherit version;
hash = "sha256-+yWwMwfhf3Ocga1r0+m1fFeENoYDHw8hS2UVhEfHc90=";
};
build-system = [ setuptools ];
dependencies = [
msrest
msrestazure
azure-common
];
# has no tests
doCheck = false;
meta = {
description = "This is the Microsoft Azure Graph RBAC Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/graphrbac/azure-graphrbac";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-graphrbac_${version}/sdk/graphrbac/azure-graphrbac/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}
|