mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 22:26:35 +01:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
27 lines
592 B
Nix
27 lines
592 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isPyPy,
|
|
isPy3k,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyptlib";
|
|
version = "0.0.6";
|
|
format = "setuptools";
|
|
disabled = isPyPy || isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "01y6vbwncqb0hxlnin6whd9wrrm5my4qzjhk76fnix78v7ip515r";
|
|
};
|
|
|
|
doCheck = false; # No such file or directory errors on 32bit
|
|
|
|
meta = {
|
|
homepage = "https://pypi.org/project/pyptlib/";
|
|
description = "Python implementation of the Pluggable Transports for Circumvention specification for Tor";
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
}
|