From 74103a35c479c1cad2b9addeffaa9a281618bb0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 31 Aug 2024 23:03:31 -0700 Subject: [PATCH] python312Packages.authlib: 1.3.1 -> 1.3.2 Diff: https://github.com/lepture/authlib/compare/refs/tags/v1.3.1...v1.3.2 Changelog: https://github.com/lepture/authlib/blob/v1.3.2/docs/changelog.rst --- .../python-modules/authlib/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/authlib/default.nix b/pkgs/development/python-modules/authlib/default.nix index 10596261a5f6..d4c9a525d87f 100644 --- a/pkgs/development/python-modules/authlib/default.nix +++ b/pkgs/development/python-modules/authlib/default.nix @@ -12,27 +12,29 @@ pytestCheckHook, pythonOlder, requests, + setuptools, starlette, werkzeug, }: buildPythonPackage rec { pname = "authlib"; - version = "1.3.1"; - format = "setuptools"; + version = "1.3.2"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "lepture"; repo = "authlib"; rev = "refs/tags/v${version}"; - hash = "sha256-5AZca4APi2gLwj/AHtXOPzIFnJkCmK9mDV0bAAvIx8A="; + hash = "sha256-gaFnai5QzHhnyn73JB+QzybaolLWC9barBFdnlEMyMU="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ cryptography - requests ]; nativeCheckInputs = [ @@ -43,6 +45,7 @@ buildPythonPackage rec { mock pytest-asyncio pytestCheckHook + requests starlette werkzeug ];