10 buildPythonPackage rec {
11 pname = "pytest-xprocess";
13 format = "setuptools";
16 inherit pname version;
17 hash = "sha256-+NQEGiChwe8ZQwVOSj33rHtD5/KR9kD0PDTp3MSzTfo=";
21 # Remove test QoL package from install_requires
22 substituteInPlace setup.py \
23 --replace "'pytest-cache', " ""
34 propagatedBuildInputs = [
39 # There's no tests in repo
43 description = "Pytest external process plugin";
44 homepage = "https://github.com/pytest-dev";
45 license = licenses.mit;
46 maintainers = with maintainers; [ jonringer ];