python310Packages.pyhanko-certvalidator: remove pytest-runner dep

It is deprecated, not actually required and we therefore won't provide
it.
This commit is contained in:
Martin Weinelt 2023-08-23 22:42:25 +02:00
parent abc57e2f0f
commit 49c22f4b19
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -5,7 +5,6 @@
, cryptography
, fetchFromGitHub
, freezegun
, openssl
, oscrypto
, pytest-asyncio
, pytestCheckHook
@ -29,6 +28,11 @@ buildPythonPackage rec {
hash = "sha256-q2YxncyMHmbRmcoLb68huK02CYiKqF2CFRl8vkUfxg4=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace ', "pytest-runner",' ""
'';
nativeBuildInputs = [
setuptools
];