1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5, case 6, psutil 7, pythonOlder 8}: 9 10buildPythonPackage rec { 11 pname = "billiard"; 12 version = "4.0.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "sha256-NE2aHX063fFx6yxZbJ6Y0e/4Gw4D8fk5iTmjUYyiY6k="; 20 }; 21 22 checkInputs = [ 23 case 24 psutil 25 pytestCheckHook 26 ]; 27 28 disabledTests = [ 29 # psutil.NoSuchProcess: process no longer exists (pid=168) 30 "test_set_pdeathsig" 31 ]; 32 33 pythonImportsCheck = [ 34 "billiard" 35 ]; 36 37 meta = with lib; { 38 description = "Python multiprocessing fork with improvements and bugfixes"; 39 homepage = "https://github.com/celery/billiard"; 40 license = licenses.bsd3; 41 maintainers = with maintainers; [ ]; 42 }; 43}