spyder: 6.0.1 -> 6.0.2 (#352820)

This commit is contained in:
Peder Bergebakken Sundt
2024-11-02 01:57:18 +01:00
committed by GitHub
3 changed files with 15 additions and 8 deletions
@@ -21,14 +21,14 @@
buildPythonPackage rec {
pname = "qtconsole";
version = "5.6.0";
version = "5.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyter";
repo = "qtconsole";
rev = "refs/tags/${version}";
hash = "sha256-V82tGAmpvfGeUoewtJXXsBBXx2HNcV9/IMJxJg3bJL8=";
hash = "sha256-esCt7UQ0va/FJ0gdSrcc/k/FgyBVqKy7ttrN6E6mx+E=";
};
build-system = [ setuptools ];
@@ -18,14 +18,14 @@
buildPythonPackage rec {
pname = "spyder-kernels";
version = "3.0.0";
version = "3.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "spyder-ide";
repo = "spyder-kernels";
rev = "refs/tags/v${version}";
hash = "sha256-oyPgujvaj2tqouZKuMVDq3gxm0GNrKmeUWqUFUkEMB4=";
hash = "sha256-OWdm4ytF9evqMEOOASssMag6QuJq2MwqmIZ+4et5IoI=";
};
build-system = [ setuptools ];
@@ -3,6 +3,11 @@
buildPythonPackage,
fetchPypi,
# nativeBuildInputs
# build-system
setuptools,
# dependencies
aiohttp,
asyncssh,
@@ -40,7 +45,6 @@
rope,
rtree,
scipy,
setuptools,
spyder-kernels,
superqt,
textdistance,
@@ -51,18 +55,21 @@
buildPythonPackage rec {
pname = "spyder";
version = "6.0.1";
version = "6.0.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-cJeC6ICRWIu+YU3m673ntHVEpNbCJeGZ3lrSK3fYsTA=";
hash = "sha256-mPUrAYFn3k5NQrsk7B2aPFnkAxKSKC4I97DnFPK1pvM=";
};
patches = [ ./dont-clear-pythonpath.patch ];
build-system = [
nativeBuildInputs = [
pyqtwebengine.wrapQtAppsHook
];
build-system = [
setuptools
];