3p/nixpkgs: bump gevent to fix dulwich segfault

This commit is contained in:
Luke Granger-Brown 2020-11-22 14:37:43 +00:00
parent 6ae7ad3cc5
commit 6fa5192c43
3 changed files with 5 additions and 2 deletions

View file

@ -42,5 +42,6 @@ buildPythonPackage rec {
description = "A Python client driver for Apache Cassandra"; description = "A Python client driver for Apache Cassandra";
homepage = "http://datastax.github.io/python-driver"; homepage = "http://datastax.github.io/python-driver";
license = licenses.asl20; license = licenses.asl20;
broken = true; # geomet doesn't exist
}; };
} }

View file

@ -4,12 +4,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "gevent"; pname = "gevent";
version = "20.5.2"; version = "20.9.0";
format = "pyproject"; format = "pyproject";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "2756de36f56b33c46f6cc7146a74ba65afcd1471922c95b6771ce87b279d689c"; sha256 = "13aw9x6imsy3b369kfjblqiwfni69pp32m4r13n62r9k3l2lhvaz";
}; };
buildInputs = [ libev ]; buildInputs = [ libev ];

View file

@ -27,6 +27,8 @@ buildPythonPackage rec {
''; '';
homepage = "http://gehrcke.de/gipc"; homepage = "http://gehrcke.de/gipc";
license = licenses.mit; license = licenses.mit;
# gipc only has support for older versions of gevent
broken = versionOlder "1.6" gevent.version;
}; };
} }