2018-03-31 11:59:02 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "billiard";
|
2018-12-16 13:10:57 +00:00
|
|
|
version = "3.5.0.5";
|
2018-03-31 11:59:02 +01:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-16 13:10:57 +00:00
|
|
|
sha256 = "03msmapj3s5zgqk87d646mafz7a01h5bm2wijalgpi0s80ks5na2";
|
2018-03-31 11:59:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest case ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/celery/billiard;
|
|
|
|
description = "Python multiprocessing fork with improvements and bugfixes";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|