1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPyPy 5, pytestCheckHook 6, case 7, psutil 8}: 9 10buildPythonPackage rec { 11 pname = "billiard"; 12 version = "3.6.4.0"; 13 disabled = isPyPy; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "0ismj2p8c66ykpss94rs0bfra5agxxmljz8r3gaq79r8valfb799"; 18 }; 19 20 checkInputs = [ 21 case 22 psutil 23 pytestCheckHook 24 ]; 25 26 meta = with lib; { 27 homepage = "https://github.com/celery/billiard"; 28 description = "Python multiprocessing fork with improvements and bugfixes"; 29 license = licenses.bsd3; 30 }; 31}