Files
nixpkgs/pkgs/development/python-modules/multiprocess/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

34 lines
685 B
Nix

{
lib,
buildPythonPackage,
dill,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "multiprocess";
version = "0.70.16";
format = "setuptools";
src = fetchFromGitHub {
owner = "uqfoundation";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-77F5fkZbljq/tuBTkquKEYVubfghUrMZsAdhp1QpH2k=";
};
propagatedBuildInputs = [ dill ];
# Python-version dependent tests
doCheck = false;
pythonImportsCheck = [ "multiprocess" ];
meta = with lib; {
description = "Multiprocessing and multithreading in Python";
homepage = "https://github.com/uqfoundation/multiprocess";
license = licenses.bsd3;
maintainers = [ ];
};
}