1{ lib
2, buildPythonPackage
3, dill
4, fetchFromGitHub
5}:
6
7buildPythonPackage rec {
8 pname = "multiprocess";
9 version = "0.70.15";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "uqfoundation";
14 repo = pname;
15 rev = "refs/tags/multiprocess-${version}";
16 hash = "sha256-fpyFBrQXy5TwbHmce3qg1RiM8JnH3J5skl3es1IQPiw=";
17 };
18
19 propagatedBuildInputs = [
20 dill
21 ];
22
23 # Python-version dependent tests
24 doCheck = false;
25
26 pythonImportsCheck = [
27 "multiprocess"
28 ];
29
30 meta = with lib; {
31 description = "Multiprocessing and multithreading in Python";
32 homepage = "https://github.com/uqfoundation/multiprocess";
33 license = licenses.bsd3;
34 maintainers = with maintainers; [ ];
35 };
36}