python310Packages.seabreeze: remove pytest runner

This commit is contained in:
Sandro Jäckel 2022-04-22 04:17:53 +02:00
parent 7e2355fc04
commit 65048d7799
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -4,7 +4,6 @@
, cython , cython
, git , git
, pkgconfig , pkgconfig
, pytest-runner
, setuptools-scm , setuptools-scm
, future , future
, numpy , numpy
@ -31,11 +30,15 @@ buildPythonPackage rec {
leaveDotGit = true; leaveDotGit = true;
}; };
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner",' ""
'';
nativeBuildInputs = [ nativeBuildInputs = [
cython cython
git git
pkgconfig pkgconfig
pytest-runner
setuptools-scm setuptools-scm
]; ];