62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, aiohttp
|
|
, beautifulsoup4
|
|
, httpx
|
|
, importlib-metadata
|
|
, multidict
|
|
, typer
|
|
, yarl
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "authcaptureproxy";
|
|
version = "1.1.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alandtse";
|
|
repo = "auth_capture_proxy";
|
|
rev = "v${version}";
|
|
sha256 = "08zpaclg5f9g1pix0jaq42i2ph12xc8djjrmhxz0yygw5rsilgl4";
|
|
};
|
|
|
|
postPatch = ''
|
|
# https://github.com/alandtse/auth_capture_proxy/issues/14
|
|
# https://github.com/alandtse/auth_capture_proxy/issues/15
|
|
substituteInPlace pyproject.toml \
|
|
--replace "poetry.masonry.api" "poetry.core.masonry.api" \
|
|
--replace 'importlib-metadata = "^3.4.0"' 'importlib-metadata = "*"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
beautifulsoup4
|
|
httpx
|
|
importlib-metadata
|
|
multidict
|
|
typer
|
|
yarl
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A proxy to capture authentication information from a webpage";
|
|
homepage = "https://github.com/alandtse/auth_capture_proxy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ graham33 hexa ];
|
|
};
|
|
}
|