11 buildPythonPackage rec {
12 pname = "pytest-xprocess";
14 format = "setuptools";
17 inherit pname version;
18 hash = "sha256-FeJwY3WG6rxWdV7l/MgcSL20a6fvfA1bG2QwLQgMxg8=";
22 # Remove test QoL package from install_requires
23 substituteInPlace setup.py \
24 --replace "'pytest-cache', " ""
27 nativeBuildInputs = [ setuptools-scm ];
29 buildInputs = [ pytest ];
31 propagatedBuildInputs = [
36 # There's no tests in repo
40 description = "Pytest external process plugin";
41 homepage = "https://github.com/pytest-dev";
42 license = licenses.mit;