Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / billiard / default.nix
blob6c641a16f9bea0c517ea1c4f6382ce2d205eaef1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , case
6 , psutil
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "billiard";
12   version = "4.1.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-GtLuro4oBT1ym6M3PTTZ1uIQ9uTYvwqcZPkr0FPx7fU=";
20   };
22   nativeCheckInputs = [
23     case
24     psutil
25     pytestCheckHook
26   ];
28   disabledTests = [
29     # psutil.NoSuchProcess: process no longer exists (pid=168)
30     "test_set_pdeathsig"
31   ];
33   pythonImportsCheck = [
34     "billiard"
35   ];
37   meta = with lib; {
38     description = "Python multiprocessing fork with improvements and bugfixes";
39     homepage = "https://github.com/celery/billiard";
40     changelog = "https://github.com/celery/billiard/blob/v${version}/CHANGES.txt";
41     license = licenses.bsd3;
42     maintainers = with maintainers; [ ];
43   };