8 buildPythonPackage rec {
11 format = "setuptools";
13 src = fetchFromGitHub {
16 rev = "refs/tags/${version}";
17 hash = "sha256-T5TqLanODyzJGyjDZz+75bbz3THxoobYnfJFQxAB76E=";
21 substituteInPlace setup.py \
22 --replace "gevent>=1.5,<=21.12.0" "gevent>=1.5"
25 propagatedBuildInputs = [
34 description = "gevent-cooperative child processes and IPC";
36 Usage of Python's multiprocessing package in a gevent-powered
37 application may raise problems and most likely breaks the application
38 in various subtle ways. gipc (pronunciation "gipsy") is developed with
39 the motivation to solve many of these issues transparently. With gipc,
40 multiprocessing. Process-based child processes can safely be created
41 anywhere within your gevent-powered application.
43 homepage = "http://gehrcke.de/gipc";
44 license = licenses.mit;