Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyptlib / default.nix
blob9f9f99884b98501d377f18b88d30c662f6bc6534
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "pyptlib";
10   version = "0.0.6";
11   disabled = isPyPy || isPy3k;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "01y6vbwncqb0hxlnin6whd9wrrm5my4qzjhk76fnix78v7ip515r";
16   };
18   doCheck = false;  # No such file or directory errors on 32bit
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   };