Files
nixpkgs/pkgs/development/python-modules/para/default.nix
T
2023-07-19 08:34:27 +02:00

30 lines
644 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, nose
}:
buildPythonPackage rec {
pname = "para";
version = "0.0.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
};
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
pythonImportsCheck = [ "para" ];
meta = with lib; {
description = "A set utilities that ake advantage of python's 'multiprocessing' module to distribute CPU-intensive tasks";
homepage = "https://pypi.org/project/para";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};
}