1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPyPy
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 pname = "pyptlib";
10 version = "0.0.6";
11 disabled = isPyPy || isPy3k;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "01y6vbwncqb0hxlnin6whd9wrrm5my4qzjhk76fnix78v7ip515r";
16 };
17
18 doCheck = false; # No such file or directory errors on 32bit
19
20 meta = with lib; {
21 homepage = "https://pypi.org/project/pyptlib/";
22 description = "A python implementation of the Pluggable Transports for Circumvention specification for Tor";
23 license = licenses.bsd2;
24 };
25
26}