pythonPackages.azure-graphrbac: init at 0.61.0
This commit is contained in:
parent
850e7d62f0
commit
7eafb0a2c1
34
pkgs/development/python-modules/azure-graphrbac/default.nix
Normal file
34
pkgs/development/python-modules/azure-graphrbac/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user