mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-17 13:30:27 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
54 lines
980 B
Nix
54 lines
980 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, aiohttp
|
|
, beautifulsoup4
|
|
, httpx
|
|
, importlib-metadata
|
|
, multidict
|
|
, typer
|
|
, yarl
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "authcaptureproxy";
|
|
version = "1.1.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alandtse";
|
|
repo = "auth_capture_proxy";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-4IPBulzRoAAplyM/1MPE40IW4IXBIGYLydzpY64Gl0c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
beautifulsoup4
|
|
httpx
|
|
importlib-metadata
|
|
multidict
|
|
typer
|
|
yarl
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|