1{
2 lib,
3 fetchFromGitHub,
4 buildPythonPackage,
5 setuptools,
6 pip-chill,
7 lxml,
8 requests,
9}:
10
11buildPythonPackage rec {
12 pname = "free-proxy";
13 version = "1.1.3";
14 pyproject = true;
15
16 src = fetchFromGitHub {
17 owner = "jundymek";
18 repo = "free-proxy";
19 tag = "v${version}";
20 hash = "sha256-8SxKGGifQTU0CUrtUQUtrmeq+Do4GIqNUWAdCt++eUA=";
21 };
22
23 build-system = [ setuptools ];
24
25 dependencies = [
26 pip-chill
27 lxml
28 requests
29 ];
30
31 meta = {
32 description = "Free proxy scraper written in python";
33 homepage = "https://github.com/jundymek/free-proxy";
34 license = lib.licenses.mit;
35 maintainers = with lib.maintainers; [ tochiaha ];
36 };
37}