python39Packages.pymarshal: remove pytest-cov, pytest-runner

This commit is contained in:
Sandro Jäckel 2022-03-29 13:33:16 +02:00
parent 72dab1fa30
commit 2f3e0789fd
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -3,9 +3,6 @@
, fetchFromGitHub , fetchFromGitHub
, pythonOlder , pythonOlder
, bson , bson
, pytest
, pytest-cov
, pytest-runner
, pytestCheckHook , pytestCheckHook
, pyyaml , pyyaml
, setuptools , setuptools
@ -23,9 +20,15 @@ buildPythonPackage rec {
sha256 = "sha256-Ds8JV2mtLRcKXBvPs84Hdj3MxxqpeV5muKCSlAFCj1A="; sha256 = "sha256-Ds8JV2mtLRcKXBvPs84Hdj3MxxqpeV5muKCSlAFCj1A=";
}; };
postPatch = ''
substituteInPlace setup.py \
--replace "'pytest-runner'" ""
substituteInPlace setup.cfg \
--replace "--cov=pymarshal --cov-report=html --cov-report=term" ""
'';
nativeBuildInputs = [ nativeBuildInputs = [
setuptools setuptools
pytest-runner
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -35,8 +38,6 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
bson bson
pytest
pytest-cov
pyyaml pyyaml
]; ];