summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/tiny-proxy
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/tiny-proxy')
-rw-r--r--pkgs/development/python-modules/tiny-proxy/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/tiny-proxy/default.nix b/pkgs/development/python-modules/tiny-proxy/default.nix
new file mode 100644
index 000000000000..cbb015909ec0
--- /dev/null
+++ b/pkgs/development/python-modules/tiny-proxy/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, anyio
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+, setuptools
+}:
+
+buildPythonPackage rec {
+ pname = "tiny-proxy";
+ version = "0.2.0";
+ format = "pyproject";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "romis2012";
+ repo = "tiny-proxy";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-emQRiG2QiuZt4/lI8shJOvMpaqXNyJ/PMvtDZPaoyLo=";
+ };
+
+ nativeBuildInputs = [
+ setuptools
+ ];
+
+ propagatedBuildInputs = [
+ anyio
+ ];
+
+ # The tests depend on httpx-socks, whose tests depend on tiny-proxy.
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "tiny_proxy"
+ ];
+
+ meta = with lib; {
+ description = "SOCKS5/SOCKS4/HTTP proxy server";
+ homepage = "https://github.com/romis2012/tiny-proxy";
+ changelog = "https://github.com/romis2012/tiny-proxy/releases/tag/v${version}";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ tjni ];
+ };
+}