Files
nixpkgs/pkgs/development/python-modules/greenlet/default.nix
T
Jonathan Ringer d0aeb6581c Revert "python3Packages.greenlet: 0.4.16 -> 0.4.17"
This reverts commit 4bfbcbeb38.

0.4.17 can cause segfaults, and some packages such as `dulwich`
will fail during tests
2020-11-19 16:53:10 -08:00

32 lines
638 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, six
, isPyPy
}:
buildPythonPackage rec {
pname = "greenlet";
version = "0.4.16";
disabled = isPyPy; # builtin for pypy
src = fetchPypi {
inherit pname version;
sha256 = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c";
};
propagatedBuildInputs = [ six ];
# see https://github.com/python-greenlet/greenlet/issues/85
preCheck = ''
rm tests/test_leaks.py
'';
meta = {
homepage = "https://pypi.python.org/pypi/greenlet";
description = "Module for lightweight in-process concurrent programming";
license = lib.licenses.lgpl2;
};
}