at 22.05-pre 1.0 kB view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, gevent 5}: 6 7buildPythonPackage rec { 8 pname = "gipc"; 9 version = "1.3.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a25ccfd2f8c94b24d2113fa50a0de5c7a44499ca9f2ab7c91c3bec0ed96ddeb1"; 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 # gipc only has support for older versions of gevent 31 broken = versionOlder "1.6" gevent.version; 32 }; 33 34}