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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "0spssl3byzqsplra166d59jx8iqfxyzvcbx7vybkmwr5ck72a5yr";
  };

  checkInputs = [ pytest case psutil ];
  checkPhase = ''
    pytest
  '';

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