Merge pull request #269827 from mweinelt/authcaptureproxy-1.2.1
python311Packages.authcaptureproxy: 1.2.0 -> 1.2.1
This commit is contained in:
commit
575e509733
1 changed files with 9 additions and 5 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue