about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/billiard/default.nix
blob: e53aa40446eb218a425a29dded612e12f2e12967 (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_4, case, psutil }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "b8809c74f648dfe69b973c8e660bcec00603758c9db8ba89d7719f88d5f01f26";
  };

  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;
  };
}