Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 32 lines 909 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, gevent 5}: 6 7buildPythonPackage rec { 8 pname = "gipc"; 9 version = "1.0.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1zg5bm30lqqd8x0jqbvr4yi8i4rzzk2hdnh280qnj2bwm5nqpghi"; 14 }; 15 16 propagatedBuildInputs = [ gevent ]; 17 18 meta = with stdenv.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}