blob: e7954e98396f057186a7ece1ac417c6f5aa0c2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
anyio,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "tiny-proxy";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "romis2012";
repo = "tiny-proxy";
tag = "v${version}";
hash = "sha256-59T09qcOstl/yfzQmNlTNxGerQethZntwDAHwz/5FFM=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ anyio ];
# The tests depend on httpx-socks, whose tests depend on tiny-proxy.
doCheck = false;
pythonImportsCheck = [ "tiny_proxy" ];
meta = {
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 = lib.licenses.asl20;
};
}
|