Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/multiprocess/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
21 changes: 1 addition & 20 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7776,26 +7776,7 @@ in {

multipledispatch = callPackage ../development/python-modules/multipledispatch { };

multiprocess = buildPythonPackage rec {
name = "multiprocess-${version}";
version = "0.70.4";

src = pkgs.fetchurl {
url = "mirror://pypi/m/multiprocess/${name}.tgz";
sha256 = "73f8b9b7009860e3c3c8b9bdcad7e8366b130929775f89c114d4346a9cfcb31b";
};

propagatedBuildInputs = with self; [ dill ];

# Python-version dependent tests
doCheck = false;

meta = {
description = "Better multiprocessing and multithreading in python";
homepage = https://github.com/uqfoundation;
license = licenses.bsd3;
};
};
multiprocess = callPackage ../development/python-modules/multiprocess { };

munkres = buildPythonPackage rec {
name = "munkres-1.0.6";
Expand Down