Merge pull request #302331 from natsukium/jupyter/update

jupyter related packages updates 2024-04-07
This commit is contained in:
OTABI Tomoya 2024-04-10 22:15:35 +09:00 committed by GitHub
commit 1ca1bf9b2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 26 additions and 22 deletions

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "anywidget";
version = "0.9.4";
format = "pyproject";
version = "0.9.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-97nCw1PohHKW2DtY6RARk1/RlMsc1s5wajuhbY3pQxo=";
hash = "sha256-nhDPAXwcsxwrTBG1kEBj77bDXMb3j/Xckk3FENjCS5E=";
};
# We do not need the jupyterlab build dependency, because we do not need to
@ -32,12 +32,12 @@ buildPythonPackage rec {
--replace '"jupyterlab==3.*"' ""
'';
nativeBuildInputs = [
build-system = [
hatch-jupyter-builder
hatchling
];
propagatedBuildInputs = [
dependencies = [
ipywidgets
psygnal
typing-extensions

View File

@ -22,14 +22,14 @@
buildPythonPackage rec {
pname = "ipykernel";
version = "6.29.3";
version = "6.29.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-4UwlDR+eo5iUkCJcwaVCeBsJWhihlEf88rXq99CsW9I=";
hash = "sha256-PUQHAGD5R1rCCSt2ASP63xBdLiSTwkhItmkafE9Cr1w=";
};
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767

View File

@ -18,14 +18,14 @@
buildPythonPackage rec {
pname = "ipyparallel";
version = "8.7.0";
version = "8.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-QDwJca5Wwrajn/6PNfMcf9FwzhJ5JGKUWc3X96C058M=";
hash = "sha256-JATVn4ajqqO9J79rV993e/9cE2PBxuYEA3WdFu1C3Hs=";
};
# We do not need the jupyterlab build dependency, because we do not need to

View File

@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "ipyvuetify";
version = "1.9.3";
version = "1.9.4";
pyproject = true;
# GitHub version tries to run npm (Node JS)
src = fetchPypi {
inherit pname version;
hash = "sha256-v2EM/liQ6C8o7x+UtbYM153L7Un9596tXKrNoDboQM0=";
hash = "sha256-wpwfN68wpj2+lLb4w0erAZYa7OrbVhNfGMv0635oiVs=";
};
# drop pynpm which tries to install node_modules

View File

@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "jupyterlab-server";
version = "2.25.4";
version = "2.26.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -29,7 +29,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "jupyterlab_server";
inherit version;
hash = "sha256-IJgZjh6C4NuYJED5tRNhddc76izUKmSAqm/VAssjxPk=";
hash = "sha256-mzupHPKDf38ST8o21j88qArOK+1ImKY91H5lmMGrAG8=";
};
postPatch = ''

View File

@ -20,14 +20,14 @@
buildPythonPackage rec {
pname = "jupyterlab";
version = "4.1.5";
version = "4.1.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-ya11KQyxC/r/NiS/P7uFIxm0zOTEVmE/jruqmNA1JNs=";
hash = "sha256-eTXza6JuthUYOk9cK7yleRtRCM4qALVQX4z9EA1TZI4=";
};
nativeBuildInputs = [

View File

@ -15,27 +15,31 @@
buildPythonPackage rec {
pname = "nbformat";
version = "5.10.3";
format = "pyproject";
version = "5.10.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-YO1ekQ73xiZLh9ZE8naxtJ4kARkw3u9UYFGI3eshFoU=";
hash = "sha256-MiFosU+Tel0RNimI7KwqSVLT2OOiy+sjGVhGMSJtWzo=";
};
nativeBuildInputs = [
build-system = [
hatchling
hatch-nodejs-version
];
propagatedBuildInputs = [
dependencies = [
fastjsonschema
jsonschema
jupyter-core
traitlets
];
pythonImportsCheck = [
"nbformat"
];
nativeCheckInputs = [
pep440
pytestCheckHook

View File

@ -22,14 +22,14 @@
let self = buildPythonPackage rec {
pname = "pytest-jupyter";
version = "0.9.1";
version = "0.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyter-server";
repo = "pytest-jupyter";
rev = "refs/tags/v${version}";
hash = "sha256-+NtLyTpMpJ+asbiQZNLFs1qLr00UlEOlbxortQ1B4so=";
hash = "sha256-RTpXBbVCRj0oyZ1TXXDv3M7sAI4kA6f3ouzTr0rXjwY=";
};
nativeBuildInputs = [