depot/third_party/nixpkgs/pkgs/development/python-modules/para/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

32 lines
662 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
nose,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "para";
version = "0.0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
};
nativeCheckInputs = [
nose
pytestCheckHook
];
pythonImportsCheck = [ "para" ];
meta = with lib; {
description = "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 ];
};
}