Merge pull request #269827 from mweinelt/authcaptureproxy-1.2.1

python311Packages.authcaptureproxy: 1.2.0 -> 1.2.1
This commit is contained in:
OTABI Tomoya 2023-11-26 13:36:03 +09:00 committed by GitHub
commit 575e509733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,28 +1,33 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
# build-system
, poetry-core , poetry-core
# dependencies
, aiohttp , aiohttp
, beautifulsoup4 , beautifulsoup4
, httpx , httpx
, importlib-metadata
, multidict , multidict
, typer , typer
, yarl , yarl
# tests
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "authcaptureproxy"; pname = "authcaptureproxy";
version = "1.2.0"; version = "1.2.1";
format = "pyproject"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "alandtse"; owner = "alandtse";
repo = "auth_capture_proxy"; repo = "auth_capture_proxy";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-OY6wT0xi7f6Bn8VOL9+6kyv5cENYbrGGTWWKc6o36cw="; hash = "sha256-z5qtaZJzTHwPkwGpRUBtrN0pCsumztkeexT0sBitXPg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -33,7 +38,6 @@ buildPythonPackage rec {
aiohttp aiohttp
beautifulsoup4 beautifulsoup4
httpx httpx
importlib-metadata
multidict multidict
typer typer
yarl yarl