Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 538 B view raw
1{ lib, buildPythonPackage, fetchPypi, dill }: 2 3buildPythonPackage rec { 4 pname = "multiprocess"; 5 version = "0.70.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "46479a327388df8e77ad268892f2e73eac06d6271189b868ce9d4f95474e58e3"; 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}