summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-07 15:58:58 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:05:07 +0200
commitefa2eef77100b8a8d0207c79cd10b15d0ed231b7 (patch)
tree1354d7bf3e04fa0ce4f197de70a6cce300f73d02
parentpython3Packages.weconnect: relax oauthlib constraint (diff)
downloadnixpkgs-efa2eef77100b8a8d0207c79cd10b15d0ed231b7.tar.gz
python3Packages.markdown: downgrade pytest
test/test_markdown2.py - Failed: 'yield' keyword is allowed in fixtures, but not in tests (test_cases)
-rw-r--r--pkgs/development/python-modules/markdown2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/markdown2/default.nix b/pkgs/development/python-modules/markdown2/default.nix
index 832a20c670fd..01fa47856207 100644
--- a/pkgs/development/python-modules/markdown2/default.nix
+++ b/pkgs/development/python-modules/markdown2/default.nix
@@ -4,7 +4,7 @@
fetchFromGitHub,
latex2mathml,
pygments,
- pytestCheckHook,
+ pytest7CheckHook,
pythonOlder,
setuptools,
wavedrom,
@@ -28,7 +28,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "markdown2" ];
- nativeCheckInputs = [ pytestCheckHook ];
+ nativeCheckInputs = [ pytest7CheckHook ];
optional-dependencies = {
code_syntax_highlighting = [ pygments ];