summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyptlib/default.nix
blob: 6349b56b4749f10890863a5b0d99bcdec7c0df8c (plain) (blame)
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
{ stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
, isPy3k
}:

buildPythonPackage rec {
  pname = "pyptlib";
  version = "0.0.6";
  disabled = isPyPy || isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "01y6vbwncqb0hxlnin6whd9wrrm5my4qzjhk76fnix78v7ip515r";
  };

  doCheck = false;  # No such file or directory errors on 32bit

  meta = with stdenv.lib; {
    homepage = https://pypi.org/project/pyptlib/;
    description = "A python implementation of the Pluggable Transports for Circumvention specification for Tor";
    license = licenses.bsd2;
  };

}