summary refs log tree commit diff
path: root/pkgs/development/python-modules/billiard/default.nix
blob: 6b21a1492bd1b034f676f83a303c30881234f3f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case }:

buildPythonPackage rec {
  pname = "billiard";
  version = "3.5.0.3";
  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1d7b22bdc47aa52841120fcd22a74ae4fc8c13e9d3935643098184f5788c3ce6";
  };

  buildInputs = [ pytest case ];

  meta = with stdenv.lib; {
    homepage = https://github.com/celery/billiard;
    description = "Python multiprocessing fork with improvements and bugfixes";
    license = licenses.bsd3;
  };
}