pythonPackages.multiprocess: 0.70.4 -> 0.70.6.1 (#45047)

This commit is contained in:
Benjamin Hipple
2018-08-15 05:01:32 -04:00
committed by xeji
parent ef98b96356
commit cc8e4a5884
2 changed files with 23 additions and 20 deletions

View File

@@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, dill }:
buildPythonPackage rec {
pname = "multiprocess";
version = "0.70.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "1ip5caz67b3q0553mr8gm8xwsb8x500jn8ml0gihgyfy52m2ypcq";
};
propagatedBuildInputs = [ dill ];
# Python-version dependent tests
doCheck = false;
meta = with lib; {
description = "Better multiprocessing and multithreading in python";
homepage = https://github.com/uqfoundation/multiprocess;
license = licenses.bsd3;
};
}