python310Packages.myst-nb: fix build

Relax dependency on myst-parser
This commit is contained in:
Mario Rodas
2023-03-25 04:20:00 +00:00
parent 5fd439e1ce
commit 4d164b7d1c
@@ -14,6 +14,7 @@
, sphinx-togglebutton
, typing-extensions
, ipykernel
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@@ -29,7 +30,10 @@ buildPythonPackage rec {
hash = "sha256-FN9yXz4Ay17+9PhjvwwnNJDIxmLf7jntins3S/JWGTM=";
};
nativeBuildInputs = [ flit-core ];
nativeBuildInputs = [
flit-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
importlib-metadata
@@ -45,6 +49,10 @@ buildPythonPackage rec {
ipykernel
];
pythonRelaxDeps = [
"myst-parser"
];
pythonImportsCheck = [ "myst_nb" ];
meta = with lib; {