blob: 6c521221391ca19b6731869b9908d4c66a1e1e9e (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pysocks";
version = "1.7.1";
format = "setuptools";
src = fetchPypi {
pname = "PySocks";
inherit version;
sha256 = "184sg65mbmih6ljblfsxcmq5js5l7dj3gpn618w9q5dy3rbh921z";
};
doCheck = false;
meta = {
description = "SOCKS module for Python";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ thoughtpolice ];
};
}
|