about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2021-09-04 15:55:47 -0400
committerGitHub <noreply@github.com>2021-09-04 15:55:47 -0400
commitb3c692172e5b5241b028a98e1977f9fb12eeaf42 (patch)
treed0cf966cbb880a21d38b404d63f65c2e6f51bedd
parent4a4294d74be2c6fdc2041275762a8a1dc7216a0b (diff)
parent3c836e9a822cdfbc7352f918c9bb8a5dbfe8eb5b (diff)
downloadnixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.tar
nixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.tar.gz
nixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.tar.bz2
nixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.tar.lz
nixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.tar.xz
nixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.tar.zst
nixlib-b3c692172e5b5241b028a98e1977f9fb12eeaf42.zip
Merge pull request #136646 from samuela/patch-2
python3Packages.markdown-it-py: use pythonImportsCheck instead of pytestImportsCheck
-rw-r--r--pkgs/development/python-modules/markdown-it-py/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/markdown-it-py/default.nix b/pkgs/development/python-modules/markdown-it-py/default.nix
index dc8866350b1f..8d75139dddcb 100644
--- a/pkgs/development/python-modules/markdown-it-py/default.nix
+++ b/pkgs/development/python-modules/markdown-it-py/default.nix
@@ -44,7 +44,7 @@ buildPythonPackage rec {
     pytest-regressions
     pytestCheckHook
   ];
-  pytestImportsCheck = [ "markdown_it" ];
+  pythonImportsCheck = [ "markdown_it" ];
 
   meta = with lib; {
     description = "Markdown parser done right";