biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / para / default.nix
blobf34260bf1531b8a12ac589aa60a397b11045d53e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "para";
11   version = "0.0.8";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
17   };
19   build-system = [ setuptools ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "para" ];
25   meta = {
26     description = "Set utilities that ake advantage of python's 'multiprocessing' module to distribute CPU-intensive tasks";
27     homepage = "https://pypi.org/project/para";
28     license = lib.licenses.mit;
29     maintainers = with lib.maintainers; [ GaetanLepage ];
30   };