python313Packages.azure-graphrbac: 0.61.1 -> 0.61.2

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-graphrbac_0.61.2/sdk/graphrbac/azure-graphrbac/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2025-08-13 10:43:05 +02:00
parent 529c4b105f
commit 93e6119295

View File

@ -5,20 +5,23 @@
msrest,
msrestazure,
azure-common,
setuptools,
}:
buildPythonPackage rec {
version = "0.61.1";
format = "setuptools";
pname = "azure-graphrbac";
version = "0.61.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1qmjhpqw0sgy406ij5xyzkffisjah9m1pfz9x54v66bwrbi8msak";
pname = "azure_graphrbac";
inherit version;
hash = "sha256-+yWwMwfhf3Ocga1r0+m1fFeENoYDHw8hS2UVhEfHc90=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
msrest
msrestazure
azure-common
@ -29,7 +32,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "This is the Microsoft Azure Graph RBAC Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
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 = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};