1{ lib
2, buildPythonPackage
3, fetchPypi
4, gevent
5}:
6
7buildPythonPackage rec {
8 pname = "gipc";
9 version = "1.4.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-P8d2GIxFAAHeXjXgIxKGwahiH1TW/9fE+V0f9Ra54wo=";
14 };
15
16 propagatedBuildInputs = [ gevent ];
17
18 meta = with lib; {
19 description = "gevent-cooperative child processes and IPC";
20 longDescription = ''
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.
27 '';
28 homepage = "http://gehrcke.de/gipc";
29 license = licenses.mit;
30 };
31
32}