linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / multiprocess / default.nix
blobdf304efb9199566ea7be12a285b314588b532b1b
1 { lib, buildPythonPackage, fetchPypi, dill }:
3 buildPythonPackage rec {
4   pname = "multiprocess";
5   version = "0.70.9";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "9fd5bd990132da77e73dec6e9613408602a4612e1d73caf2e2b813d2b61508e5";
10   };
12   propagatedBuildInputs = [ dill ];
14   # Python-version dependent tests
15   doCheck = false;
17   meta = with lib; {
18     description = "Better multiprocessing and multithreading in python";
19     homepage = "https://github.com/uqfoundation/multiprocess";
20     license = licenses.bsd3;
21   };