Unverified Commit 9a89fd2d authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

spyder: 6.0.1 -> 6.0.2 (#352820)

parents 1ae56244 8336b4c8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 ];
+2 −2
Original line number Diff line number Diff line
@@ -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 ];
+11 −4
Original line number Diff line number Diff line
@@ -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
  ];