My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyptlib/default.nix

26 lines
570 B

{ lib
, 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 lib; {
homepage = "https://pypi.org/project/pyptlib/";
description = "A python implementation of the Pluggable Transports for Circumvention specification for Tor";
license = licenses.bsd2;
};
}