Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 962 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, gevent 6}: 7 8buildPythonPackage rec { 9 pname = "gipc"; 10 version = "0.6.0"; 11 disabled = isPy3k; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 sha256 = "0pd9by719qh882hqs6xpby61sn1x5h98hms5p2p8yqnycrf1s0h2"; 17 }; 18 19 propagatedBuildInputs = [ gevent ]; 20 21 meta = with stdenv.lib; { 22 description = "gevent-cooperative child processes and IPC"; 23 longDescription = '' 24 Usage of Python's multiprocessing package in a gevent-powered 25 application may raise problems and most likely breaks the application 26 in various subtle ways. gipc (pronunciation "gipsy") is developed with 27 the motivation to solve many of these issues transparently. With gipc, 28 multiprocessing. Process-based child processes can safely be created 29 anywhere within your gevent-powered application. 30 ''; 31 homepage = http://gehrcke.de/gipc; 32 license = licenses.mit; 33 }; 34 35}