1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 msrest,
6 msrestazure,
7 azure-common,
8}:
9
10buildPythonPackage rec {
11 version = "0.61.1";
12 format = "setuptools";
13 pname = "azure-graphrbac";
14
15 src = fetchPypi {
16 inherit pname version;
17 extension = "zip";
18 sha256 = "1qmjhpqw0sgy406ij5xyzkffisjah9m1pfz9x54v66bwrbi8msak";
19 };
20
21 propagatedBuildInputs = [
22 msrest
23 msrestazure
24 azure-common
25 ];
26
27 # has no tests
28 doCheck = false;
29
30 meta = with lib; {
31 description = "This is the Microsoft Azure Graph RBAC Client Library";
32 homepage = "https://github.com/Azure/azure-sdk-for-python";
33 license = licenses.mit;
34 maintainers = with maintainers; [ maxwilson ];
35 };
36}