Commit 9209e1ff authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python3Packages.para: init at 0.0.8

parent dfcc2580
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -7527,6 +7527,8 @@ self: super: with self; {

  papis-python-rofi = callPackage ../development/python-modules/papis-python-rofi { };

  para = callPackage ../development/python-modules/para { };

  param = callPackage ../development/python-modules/param { };

  parameter-expansion-patched = callPackage ../development/python-modules/parameter-expansion-patched { };