1{ lib, buildPythonPackage, fetchPypi, dill }: 2 3buildPythonPackage rec { 4 pname = "multiprocess"; 5 version = "0.70.6.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1ip5caz67b3q0553mr8gm8xwsb8x500jn8ml0gihgyfy52m2ypcq"; 10 }; 11 12 propagatedBuildInputs = [ dill ]; 13 14 # Python-version dependent tests 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Better multiprocessing and multithreading in python"; 19 homepage = https://github.com/uqfoundation/multiprocess; 20 license = licenses.bsd3; 21 }; 22}