1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 msrest,
6 msrestazure,
7 azure-common,
8 setuptools,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-graphrbac";
13 version = "0.61.2";
14 pyproject = true;
15
16 src = fetchPypi {
17 pname = "azure_graphrbac";
18 inherit version;
19 hash = "sha256-+yWwMwfhf3Ocga1r0+m1fFeENoYDHw8hS2UVhEfHc90=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [
25 msrest
26 msrestazure
27 azure-common
28 ];
29
30 # has no tests
31 doCheck = false;
32
33 meta = with lib; {
34 description = "This is the Microsoft Azure Graph RBAC Client Library";
35 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/graphrbac/azure-graphrbac";
36 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-graphrbac_${version}/sdk/graphrbac/azure-graphrbac/CHANGELOG.md";
37 license = licenses.mit;
38 maintainers = with maintainers; [ maxwilson ];
39 };
40}