1{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case }:
2
3buildPythonPackage rec {
4 pname = "billiard";
5 version = "3.5.0.4";
6 disabled = isPyPy;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "ed65448da5877b5558f19d2f7f11f8355ea76b3e63e1c0a6059f47cfae5f1c84";
11 };
12
13 buildInputs = [ pytest case ];
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}