summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/authcaptureproxy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/authcaptureproxy/default.nix')
-rw-r--r--pkgs/development/python-modules/authcaptureproxy/default.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/authcaptureproxy/default.nix b/pkgs/development/python-modules/authcaptureproxy/default.nix
new file mode 100644
index 000000000000..0f1f6d046463
--- /dev/null
+++ b/pkgs/development/python-modules/authcaptureproxy/default.nix
@@ -0,0 +1,60 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, poetry-core
+, aiohttp
+, beautifulsoup4
+, httpx
+, importlib-metadata
+, multidict
+, typer
+, yarl
+, pytest-asyncio
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "authcaptureproxy";
+ version = "1.0.1";
+ format = "pyproject";
+
+ src = fetchFromGitHub {
+ owner = "alandtse";
+ repo = "auth_capture_proxy";
+ rev = "v${version}";
+ sha256 = "1fbrmh6qa3dm3q3zdxaa0fls94wardbcvnjgwxk686wpjgs1xrs4";
+ };
+
+ postPatch = ''
+ # https://github.com/alandtse/auth_capture_proxy/issues/14
+ substituteInPlace pyproject.toml --replace \
+ "poetry.masonry.api" \
+ "poetry.core.masonry.api"
+ '';
+
+ 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 ];
+ };
+}