python311Packages.nbconvert: 7.8.0 -> 7.11.0

Diff: https://github.com/jupyter/nbconvert/compare/v7.8.0...v7.11.0

Changelog: https://github.com/jupyter/nbconvert/blob/v7.11.0/CHANGELOG.md
This commit is contained in:
natsukium 2023-11-23 15:14:25 +09:00
parent ce956d54ca
commit 6c5041bc0a
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -21,7 +21,6 @@
, importlib-metadata
, flaky
, ipywidgets
, pyppeteer
, pytestCheckHook
}:
@ -33,15 +32,14 @@ let
};
in buildPythonPackage rec {
pname = "nbconvert";
version = "7.8.0";
version = "7.11.0";
pyproject = true;
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-9bwVoSR+FN1Bzu8MCjvHACDgFldusFeNpi8cW0+VBHk=";
hash = "sha256-q+3AHPVDF3/94L/Cppcm1aR49q8QozL8G/Kfy08M8AA=";
};
# Add $out/share/jupyter to the list of paths that are used to search for
@ -87,7 +85,6 @@ in buildPythonPackage rec {
nativeCheckInputs = [
flaky
ipywidgets
pyppeteer
pytestCheckHook
];