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