Merge pull request #312553 from natsukium/jupyter/update

jupyter updates 2024-05-18
This commit is contained in:
OTABI Tomoya 2024-05-19 09:35:30 +09:00 committed by GitHub
commit c48947a84f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 29 additions and 20 deletions

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "anywidget";
version = "0.9.10";
version = "0.9.11";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-OQpigkCYHAmBPHUjJ53cq4L/T9Moet1UM7eLE2kIkGg=";
hash = "sha256-WN3tjobsJ84odgyUVzF2YxE9mvYIlH7mqNDstSiyLNw=";
};
# We do not need the jupyterlab build dependency, because we do not need to
@ -48,6 +48,11 @@ buildPythonPackage rec {
watchfiles
];
disabledTests = [
# requires package.json
"test_version"
];
pythonImportsCheck = [ "anywidget" ];
meta = with lib; {

View File

@ -20,7 +20,7 @@
buildPythonPackage rec {
pname = "jupyterlab-git";
version = "0.50.0";
version = "0.50.1";
pyproject = true;
disabled = pythonOlder "3.8";
@ -28,7 +28,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "jupyterlab_git";
inherit version;
hash = "sha256-CYWVRtOQE067kYqWXCw/4mBf6v4yfPYWFb592Qtb37s=";
hash = "sha256-v08Go/vCsquE6l1SMmqg4LjM9OmjNX+jGKEZVg4cak0=";
};
nativeBuildInputs = [

View File

@ -20,14 +20,14 @@
buildPythonPackage rec {
pname = "jupyterlab";
version = "4.1.8";
version = "4.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-M4St7YaA585QT9Y7i7iaOd8hycdpTZ59xKaHQs2zD5s=";
hash = "sha256-NW6SBaaiq2icR8j+SRnbpsB243bQPya6rcBXSMJDXdU=";
};
nativeBuildInputs = [

View File

@ -3,30 +3,32 @@
, fetchPypi
, pythonOlder
, setuptools
, black
, click
, docutils
, itsdangerous
, jedi
, markdown
, pymdown-extensions
, psutil
, pygments
, pymdown-extensions
, starlette
, tomlkit
, uvicorn
, starlette
, websockets
, docutils
, black
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "marimo";
version = "0.4.10";
version = "0.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-F6Hf8KPIkXuRhO/1mVHE1wfU6//vbUK1ghoqANmZjag=";
hash = "sha256-L6ICaaMRrMOr/d8CJGcXxOYCWTVh8ObckW7xNeLRB2Q=";
};
build-system = [
@ -34,17 +36,19 @@ buildPythonPackage rec {
];
dependencies = [
black
click
docutils
itsdangerous
jedi
markdown
pymdown-extensions
psutil
pygments
pymdown-extensions
starlette
tomlkit
uvicorn
starlette
websockets
docutils
black
];
nativeCheckInputs = [

View File

@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "nbdev";
version = "2.3.21";
version = "2.3.22";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-H3KHnVOdy+Hdpka+dxp/qPj1HZSXIbXJshnZuXVo9DQ=";
hash = "sha256-CO88zk4aPoaYokt98IYXpfTrhdVBgCwM9BSiKqWeKm4=";
};
nativeBuildInputs = [

View File

@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "notebook";
version = "7.1.3";
version = "7.2.0";
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-Qfzr/0TPe7k3cYCAi8uuBmYptV2MdyLx6751ykT5z8E=";
hash = "sha256-NKK6SwitXRnskw23SE+3l0aheEvp4aX4IY+a+GVqFB8=";
};
postPatch = ''