nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5, case
6, psutil
7, pythonOlder
8}:
9
10buildPythonPackage rec {
11 pname = "billiard";
12 version = "3.6.4.0";
13 format = "setuptools";
14
15 disabled = pythonOlder "3.7";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "0ismj2p8c66ykpss94rs0bfra5agxxmljz8r3gaq79r8valfb799";
20 };
21
22 checkInputs = [
23 case
24 psutil
25 pytestCheckHook
26 ];
27
28 pythonImportsCheck = [
29 "billiard"
30 ];
31
32 meta = with lib; {
33 description = "Python multiprocessing fork with improvements and bugfixes";
34 homepage = "https://github.com/celery/billiard";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ ];
37 };
38}