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