nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest_4, case, psutil }:
2
3buildPythonPackage rec {
4 pname = "billiard";
5 version = "3.6.1.0";
6 disabled = isPyPy;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "b8809c74f648dfe69b973c8e660bcec00603758c9db8ba89d7719f88d5f01f26";
11 };
12
13 checkInputs = [ pytest_4 case psutil ];
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}