1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "pysocks";
9 version = "1.7.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 pname = "PySocks";
14 inherit version;
15 sha256 = "184sg65mbmih6ljblfsxcmq5js5l7dj3gpn618w9q5dy3rbh921z";
16 };
17
18 doCheck = false;
19
20 meta = with lib; {
21 description = "SOCKS module for Python";
22 license = licenses.bsd3;
23 maintainers = with maintainers; [ thoughtpolice ];
24 };
25}