Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / billiard / default.nix
blob15ccd234a7ac065ea84ca346f3a42e8cf4617bcf
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , case
6 , psutil
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "billiard";
12   version = "4.2.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-mjwxhMsnWqF6cy+T9lsgxSXT2fJTci0mqCGUgDreWiw=";
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   };