blob: c315076b09c5cde353bb67ed3e3bd2fd9031bde8 (
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
37
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
pip-chill,
lxml,
requests,
}:
buildPythonPackage rec {
pname = "free-proxy";
version = "1.1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "jundymek";
repo = "free-proxy";
tag = "v${version}";
hash = "sha256-8SxKGGifQTU0CUrtUQUtrmeq+Do4GIqNUWAdCt++eUA=";
};
build-system = [ setuptools ];
dependencies = [
pip-chill
lxml
requests
];
meta = {
description = "Free proxy scraper written in python";
homepage = "https://github.com/jundymek/free-proxy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tochiaha ];
};
}
|