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