Unverified Commit 574d68b0 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

spyder: 6.1.0a1 -> 6.1.0a2 (#401085)

parents 1a20f40a 71c787b1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -30,6 +30,10 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  pythonRelaxDeps = [
    "ipython"
  ];

  dependencies = [
    cloudpickle
    ipykernel
+11 −3
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
  aiohttp,
  asyncssh,
  atomicwrites,
  bcrypt,
  chardet,
  cloudpickle,
  cookiecutter,
@@ -27,6 +28,7 @@
  nbconvert,
  numpy,
  numpydoc,
  packaging,
  pickleshare,
  psutil,
  pygithub,
@@ -56,12 +58,12 @@

buildPythonPackage rec {
  pname = "spyder";
  version = "6.1.0a1";
  version = "6.1.0a2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Yjii1YUmdWdrrSLe3trAoATJXt2bfjc0JX5CBMVIEq8=";
    hash = "sha256-KbGfG9T3XkYXntIQx325mYb0Bh8c0idb+25awFlWD9s=";
  };

  patches = [ ./dont-clear-pythonpath.patch ];
@@ -70,10 +72,15 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  pythonRelaxDeps = [
    "ipython"
  ];

  dependencies = [
    aiohttp
    asyncssh
    atomicwrites
    bcrypt
    chardet
    cloudpickle
    cookiecutter
@@ -88,6 +95,7 @@ buildPythonPackage rec {
    nbconvert
    numpy
    numpydoc
    packaging
    pickleshare
    psutil
    pygithub
@@ -141,7 +149,7 @@ buildPythonPackage rec {
    '';
    homepage = "https://www.spyder-ide.org/";
    downloadPage = "https://github.com/spyder-ide/spyder/releases";
    changelog = "https://github.com/spyder-ide/spyder/blob/master/CHANGELOG.md";
    changelog = "https://github.com/spyder-ide/spyder/blob/v${version}/changelogs/Spyder-6.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
    platforms = lib.platforms.linux;