pythonPackages.azure-graphrbac: init at 0.61.0

This commit is contained in:
Max Wilson 2019-04-29 17:53:30 -04:00 committed by Wael M. Nasreddine
parent 850e7d62f0
commit 7eafb0a2c1
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
}:
buildPythonPackage rec {
version = "0.61.0";
pname = "azure-graphrbac";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "4ab27db29d730e4d35f420466500f8ee60a26a8151dbd121a6c353ccd9d4ee55";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Graph RBAC Client Library";
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-graphrbac;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -254,6 +254,8 @@ in {
azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { };
azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { };
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };