aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-19 15:28:55 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-19 16:53:10 -0800
commitd0aeb6581cc39b54264d33af14a32fcdfbaaf750 (patch)
tree1462ea030d02c9df026e69bed5417994c44640d0 /pkgs
parent205e4b6fe4bf6faf9f4c09626382b8443ff997db (diff)
Revert "python3Packages.greenlet: 0.4.16 -> 0.4.17"
This reverts commit 4bfbcbeb383e442bb9b60d82fc401340bc38536a. 0.4.17 can cause segfaults, and some packages such as `dulwich` will fail during tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/greenlet/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/greenlet/default.nix b/pkgs/development/python-modules/greenlet/default.nix
index 5b7581ada8f0..c325c9652491 100644
--- a/pkgs/development/python-modules/greenlet/default.nix
+++ b/pkgs/development/python-modules/greenlet/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "greenlet";
- version = "0.4.17";
+ version = "0.4.16";
disabled = isPyPy; # builtin for pypy
src = fetchPypi {
inherit pname version;
- sha256 = "41d8835c69a78de718e466dd0e6bfd4b46125f21a67c3ff6d76d8d8059868d6b";
+ sha256 = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c";
};
propagatedBuildInputs = [ six ];