python3Packages.markdown-it-py: fix linkify extra

linkify-it-py is on version 2.0.0, while markdown-it-py[linkify] depends on linkify-it-py~=1.0
This commit is contained in:
Peder Bergebakken Sundt
2023-08-08 18:42:20 +08:00
committed by Yt
parent e6990d6cc4
commit c0c84051fd
@@ -19,6 +19,7 @@
, stdenv
, pytest-regressions
, pytestCheckHook
, pythonRelaxDepsHook
, pythonOlder
}:
@@ -36,7 +37,13 @@ buildPythonPackage rec {
hash = "sha256-qdRU1BxczFDGoIEtl0ZMkKNn4p5tec8YuPt5ZwX5fYM=";
};
# fix downstrem usage of markdown-it-py[linkify]
pythonRelaxDeps = [
"linkify-it-py"
];
nativeBuildInputs = [
pythonRelaxDepsHook
flit-core
];