3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/billiard/default.nix

21 lines
540 B
Nix
Raw Normal View History

2019-10-26 22:16:43 +01:00
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest_4, case, psutil }:
buildPythonPackage rec {
pname = "billiard";
2019-10-16 10:43:03 +01:00
version = "3.6.1.0";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:03 +01:00
sha256 = "b8809c74f648dfe69b973c8e660bcec00603758c9db8ba89d7719f88d5f01f26";
};
2019-10-26 22:16:43 +01:00
checkInputs = [ pytest_4 case psutil ];
meta = with stdenv.lib; {
homepage = https://github.com/celery/billiard;
description = "Python multiprocessing fork with improvements and bugfixes";
license = licenses.bsd3;
};
}