jupyter updates 2024-09-13 (#341588)

This commit is contained in:
OTABI Tomoya 2024-09-14 08:58:55 +09:00 committed by GitHub
commit 04550829fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 15 additions and 31 deletions

View File

@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "ipycanvas";
version = "0.13.2";
version = "0.13.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ujh9nYf2WVXzlVL7eSfEReXl5JN9hTgU2RDL6O+g+3k=";
hash = "sha256-ToZ8UJsB9cTPwAn32SHjLloSoCmshW54wE/xW2VpLEo=";
};
# We relax dependencies here instead of pulling in a patch because upstream

View File

@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "jupyterlab-execute-time";
version = "3.1.2";
version = "3.2.0";
pyproject = true;
src = fetchPypi {
pname = "jupyterlab_execute_time";
inherit version;
hash = "sha256-DiyGsoNXXh+ieMfpSrA6A/5c0ftNV9Ygs9Tl2/VEdbk=";
hash = "sha256-mxO2XCwTm/q7P2/xcGxNM+1aViA6idApdggzThW8nAs=";
};
# jupyterlab is required to build from source but we use the pre-build package

View File

@ -24,14 +24,14 @@
buildPythonPackage rec {
pname = "marimo";
version = "0.8.13";
version = "0.8.15";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-x1f71IaFO/LVNmgCS/eKa/Ia/KETToGexLK1FD3gWZM=";
hash = "sha256-S+lhoyM8s6wLFq1oGJMdzq+s+Uhn76qMgbkMUwpVr44=";
};
build-system = [ setuptools ];

View File

@ -16,15 +16,15 @@
buildPythonPackage rec {
pname = "mkdocs-jupyter";
version = "0.24.8";
version = "0.25.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "mkdocs_jupyter";
inherit version;
hash = "sha256-Cadi9ITVQNnA6UTTSyjLU2oyhp4iS0YOL8eRsUP3aUA=";
hash = "sha256-4mwdNBkWvFf5bqP5PY0KiPx3yH1M7iIvZtIAd5jZJPU=";
};
pythonRelaxDeps = [ "nbconvert" ];

View File

@ -1,10 +0,0 @@
--- a/nbdime/webapp/nbdimeserver.py
+++ b/nbdime/webapp/nbdimeserver.py
@@ -388,6 +388,7 @@
'jinja2_env': env,
'local_hostnames': ['localhost', '127.0.0.1'],
'cookie_secret': base64.encodebytes(os.urandom(32)), # Needed even for an unsecured server.
+ 'allow_unauthenticated_access': True,
}
try:

View File

@ -22,29 +22,23 @@
buildPythonPackage rec {
pname = "nbdime";
version = "4.0.1";
version = "4.0.2";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-8adgwLAMG6m0lFwWzpJXfzk/tR0YTzUbdoW6boUCCY4=";
hash = "sha256-2Cefj0sjbAslOyDWDEgxu2eEPtjb1uCfI06wEdNvG/I=";
};
patches = [
# this fixes the webserver (nbdiff-web) when jupyter-server >=2.13 is used
# see https://github.com/jupyter/nbdime/issues/749
./749.patch
];
nativeBuildInputs = [
build-system = [
hatch-jupyter-builder
hatchling
jupyterlab
];
propagatedBuildInputs = [
dependencies = [
nbformat
colorama
pygments

View File

@ -22,14 +22,14 @@
buildPythonPackage rec {
pname = "oauthenticator";
version = "16.3.1";
version = "17.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-gFhhOCcmorkrLxrup9fICh5ueCrc64fxfuZXTQG1tMk=";
hash = "sha256-0eRfcuI+GuhgF0myZPy8ZcL4kBCLv6PcGEk+92J+GZ0=";
};
build-system = [ setuptools ];