python3Packages.pytest-xprocess: 0.20.0 -> 0.21.0

https://github.com/pytest-dev/pytest-xprocess/blob/0.21.0/CHANGELOG.rst
This commit is contained in:
Martin Weinelt 2022-12-29 15:15:26 +01:00
parent af8b9c216b
commit a8a664f206

View File

@ -1,30 +1,41 @@
{ lib, buildPythonPackage, fetchPypi
{ lib
, buildPythonPackage
, fetchPypi
, psutil
, py
, pytest
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pytest-xprocess";
version = "0.20.0";
version = "0.21.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-AhZ1IsTcdZ+RxKsZhUY5zR6fbgq/ynXhGWgrVB0b1j8=";
sha256 = "sha256-+UcL/PiE9ymetrgqQ9KYwxi45T7DFO5iTJh+DofBtEk=";
};
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ pytest ];
propagatedBuildInputs = [ psutil ];
# Remove test QoL package from install_requires
postPatch = ''
# Remove test QoL package from install_requires
substituteInPlace setup.py \
--replace "'pytest-cache', " ""
'';
nativeBuildInputs = [
setuptools-scm
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
psutil
py
];
# There's no tests in repo
doCheck = false;