From b78f5e5f66eb80748a24178db4eb6916ceab6342 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Tue, 6 Aug 2024 23:36:27 +0200 Subject: [PATCH] python311Packages.pydyf: migate to pytest-cov-stub --- pkgs/development/python-modules/pydyf/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pydyf/default.nix b/pkgs/development/python-modules/pydyf/default.nix index 6a93a446506e..46a001bb1c26 100644 --- a/pkgs/development/python-modules/pydyf/default.nix +++ b/pkgs/development/python-modules/pydyf/default.nix @@ -6,6 +6,7 @@ ghostscript, pillow, pytestCheckHook, + pytest-cov-stub, pythonOlder, }: @@ -23,7 +24,7 @@ buildPythonPackage rec { postPatch = '' substituteInPlace pyproject.toml \ - --replace "--isort --flake8 --cov --no-cov-on-fail" "" + --replace "--isort --flake8" "" ''; nativeBuildInputs = [ flit-core ]; @@ -32,6 +33,7 @@ buildPythonPackage rec { ghostscript pillow pytestCheckHook + pytest-cov-stub ]; pythonImportsCheck = [ "pydyf" ];