Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / multiprocess / default.nix
blob2852fbcbd0d6a3468d5b08990e4425475b33c59b
1 { lib
2 , buildPythonPackage
3 , dill
4 , fetchFromGitHub
5 }:
7 buildPythonPackage rec {
8   pname = "multiprocess";
9   version = "0.70.16";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "uqfoundation";
14     repo = pname;
15     rev = "refs/tags/${version}";
16     hash = "sha256-77F5fkZbljq/tuBTkquKEYVubfghUrMZsAdhp1QpH2k=";
17   };
19   propagatedBuildInputs = [
20     dill
21   ];
23   # Python-version dependent tests
24   doCheck = false;
26   pythonImportsCheck = [
27     "multiprocess"
28   ];
30   meta = with lib; {
31     description = "Multiprocessing and multithreading in Python";
32     homepage = "https://github.com/uqfoundation/multiprocess";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ ];
35   };