From c2478dd50e3c62face958c06c7c25c25ecf6f53d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 25 Nov 2023 10:46:38 +0100 Subject: [PATCH] python311Packages.authcaptureproxy: 1.2.0 -> 1.2.1 https://github.com/alandtse/auth_capture_proxy/releases/tag/v1.2.1 --- .../python-modules/authcaptureproxy/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/authcaptureproxy/default.nix b/pkgs/development/python-modules/authcaptureproxy/default.nix index e18375c1f5d2..e8097548cef2 100644 --- a/pkgs/development/python-modules/authcaptureproxy/default.nix +++ b/pkgs/development/python-modules/authcaptureproxy/default.nix @@ -1,28 +1,33 @@ { lib , buildPythonPackage , fetchFromGitHub + +# build-system , poetry-core + +# dependencies , aiohttp , beautifulsoup4 , httpx -, importlib-metadata , multidict , typer , yarl + +# tests , pytest-asyncio , pytestCheckHook }: buildPythonPackage rec { pname = "authcaptureproxy"; - version = "1.2.0"; - format = "pyproject"; + version = "1.2.1"; + pyproject = true; src = fetchFromGitHub { owner = "alandtse"; repo = "auth_capture_proxy"; rev = "refs/tags/v${version}"; - hash = "sha256-OY6wT0xi7f6Bn8VOL9+6kyv5cENYbrGGTWWKc6o36cw="; + hash = "sha256-z5qtaZJzTHwPkwGpRUBtrN0pCsumztkeexT0sBitXPg="; }; nativeBuildInputs = [ @@ -33,7 +38,6 @@ buildPythonPackage rec { aiohttp beautifulsoup4 httpx - importlib-metadata multidict typer yarl