7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "f9a9d557e65e17bab8d7ff727ee3f1935e25bd52b01e63c23c7b3b52415728a5";
16 propagatedBuildInputs = [ gevent ];
19 description = "gevent-cooperative child processes and IPC";
21 Usage of Python's multiprocessing package in a gevent-powered
22 application may raise problems and most likely breaks the application
23 in various subtle ways. gipc (pronunciation "gipsy") is developed with
24 the motivation to solve many of these issues transparently. With gipc,
25 multiprocessing. Process-based child processes can safely be created
26 anywhere within your gevent-powered application.
28 homepage = "http://gehrcke.de/gipc";
29 license = licenses.mit;
30 # gipc only has support for older versions of gevent
31 broken = versionOlder "1.6" gevent.version;