Merge pull request #223173 from marsam/fix-myst-nb-build
python310Packages.myst-nb: fix build
This commit is contained in:
commit
d2c23c58b9
1 changed files with 9 additions and 1 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue