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