Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 536 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case, psutil }: 2 3buildPythonPackage rec { 4 pname = "billiard"; 5 version = "3.6.0.0"; 6 disabled = isPyPy; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "756bf323f250db8bf88462cd042c992ba60d8f5e07fc5636c24ba7d6f4261d84"; 11 }; 12 13 checkInputs = [ pytest case psutil ]; 14 15 meta = with stdenv.lib; { 16 homepage = https://github.com/celery/billiard; 17 description = "Python multiprocessing fork with improvements and bugfixes"; 18 license = licenses.bsd3; 19 }; 20}