python3Packages.multiprocess: 0.10.9 -> 0.70.12.2

This commit is contained in:
Fabian Affolter 2021-11-09 23:42:44 +01:00
parent 2de888a972
commit 1070be5fe4

View file

@ -1,22 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, dill }:
{ lib
, buildPythonPackage
, dill
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "multiprocess";
version = "0.70.9";
version = "0.70.12.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "9fd5bd990132da77e73dec6e9613408602a4612e1d73caf2e2b813d2b61508e5";
src = fetchFromGitHub {
owner = "uqfoundation";
repo = pname;
rev = "multiprocess-${version}";
sha256 = "1npikdgj0qriqj384vg22qgq2xqylypk67sx1qfmdzvk6c4iyg0w";
};
propagatedBuildInputs = [ dill ];
propagatedBuildInputs = [
dill
];
# Python-version dependent tests
doCheck = false;
pythonImportsCheck = [
"multiprocess"
];
meta = with lib; {
description = "Better multiprocessing and multithreading in python";
description = "Multiprocessing and multithreading in Python";
homepage = "https://github.com/uqfoundation/multiprocess";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}