python312Packages.qtconsole: 5.5.2 -> 5.6.0

Changelog:
https://qtconsole.readthedocs.io/en/stable/changelog.html#changes-in-jupyter-qt-console
This commit is contained in:
Gaetan Lepage 2024-09-03 08:42:48 +02:00
parent 500faa537e
commit c133b42520

View File

@ -1,30 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
ipykernel,
jupyter-core,
jupyter-client,
pygments,
pyqt5,
pytestCheckHook,
pythonOlder,
pyzmq,
qtpy,
setuptools,
traitlets,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "qtconsole";
version = "5.5.2";
version = "5.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-a1+xEnSyl0Y3Bq+E3LvVySJzsfYZ5tJdCIdLCohRaYk=";
src = fetchFromGitHub {
owner = "jupyter";
repo = "qtconsole";
rev = "refs/tags/${version}";
hash = "sha256-V82tGAmpvfGeUoewtJXXsBBXx2HNcV9/IMJxJg3bJL8=";
};
build-system = [ setuptools ];
@ -35,7 +39,6 @@ buildPythonPackage rec {
jupyter-client
pygments
pyqt5
pyzmq
qtpy
traitlets
];
@ -47,11 +50,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "qtconsole" ];
meta = with lib; {
meta = {
description = "Jupyter Qt console";
mainProgram = "jupyter-qtconsole";
homepage = "https://qtconsole.readthedocs.io/";
license = licenses.bsd3;
platforms = platforms.unix;
changelog = "https://qtconsole.readthedocs.io/en/stable/changelog.html#changes-in-jupyter-qt-console";
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
};
}