1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 nose,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "para";
11 version = "0.0.8";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
17 };
18
19 nativeCheckInputs = [
20 nose
21 pytestCheckHook
22 ];
23
24 pythonImportsCheck = [ "para" ];
25
26 meta = with lib; {
27 description = "A set utilities that ake advantage of python's 'multiprocessing' module to distribute CPU-intensive tasks";
28 homepage = "https://pypi.org/project/para";
29 license = licenses.mit;
30 maintainers = with maintainers; [ GaetanLepage ];
31 };
32}