nixpkgs/pkgs/development/python-modules/pyptlib/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
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>
2025-12-10 18:09:49 +01:00

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;
};
}