2021-01-27 17:14:24 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27, makeDesktopItem, intervaltree,
|
2021-11-12 09:22:34 +00:00
|
|
|
jedi, pycodestyle, psutil, rope, numpy, scipy, matplotlib, pylint,
|
2021-01-27 17:14:24 +00:00
|
|
|
keyring, numpydoc, qtconsole, qtawesome, nbconvert, mccabe, pyopengl,
|
|
|
|
cloudpickle, pygments, spyder-kernels, qtpy, pyzmq, chardet, qdarkstyle,
|
|
|
|
watchdog, python-language-server, pyqtwebengine, atomicwrites, pyxdg,
|
2021-04-27 16:19:17 +00:00
|
|
|
diff-match-patch, three-merge, pyls-black, pyls-spyder, flake8, textdistance
|
2019-08-03 12:13:33 +00:00
|
|
|
}:
|
2013-05-05 11:13:45 +00:00
|
|
|
|
2019-05-21 15:51:14 +00:00
|
|
|
buildPythonPackage rec {
|
2017-11-15 15:19:07 +00:00
|
|
|
pname = "spyder";
|
2022-03-02 21:42:26 +00:00
|
|
|
version = "5.2.2";
|
2020-03-20 22:13:20 +00:00
|
|
|
|
|
|
|
disabled = isPy27;
|
2013-05-05 11:13:45 +00:00
|
|
|
|
2019-05-21 15:51:14 +00:00
|
|
|
src = fetchPypi {
|
2017-11-15 15:19:07 +00:00
|
|
|
inherit pname version;
|
2022-03-02 21:42:26 +00:00
|
|
|
sha256 = "sha256-3DIikQlsc7Ptagi8ddR5ia+u24dXeBdppRkIn/xp3bg=";
|
2013-05-05 11:13:45 +00:00
|
|
|
};
|
|
|
|
|
2019-11-11 10:55:38 +00:00
|
|
|
nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ];
|
|
|
|
|
2019-05-21 15:51:14 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-04-27 16:19:17 +00:00
|
|
|
intervaltree jedi pycodestyle psutil rope numpy scipy matplotlib pylint keyring
|
2019-02-15 11:45:03 +00:00
|
|
|
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle spyder-kernels
|
2020-02-16 08:52:25 +00:00
|
|
|
pygments qtpy pyzmq chardet pyqtwebengine qdarkstyle watchdog python-language-server
|
2021-01-09 05:23:06 +00:00
|
|
|
atomicwrites pyxdg diff-match-patch three-merge pyls-black pyls-spyder
|
2021-04-27 16:19:17 +00:00
|
|
|
flake8 textdistance
|
2017-11-15 15:19:07 +00:00
|
|
|
];
|
2013-05-05 11:13:45 +00:00
|
|
|
|
|
|
|
# There is no test for spyder
|
|
|
|
doCheck = false;
|
|
|
|
|
2013-05-05 11:27:28 +00:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "Spyder";
|
|
|
|
exec = "spyder";
|
|
|
|
icon = "spyder";
|
|
|
|
comment = "Scientific Python Development Environment";
|
|
|
|
desktopName = "Spyder";
|
|
|
|
genericName = "Python IDE";
|
2022-02-22 14:56:15 +00:00
|
|
|
categories = [ "Development" "IDE" ];
|
2013-05-05 11:27:28 +00:00
|
|
|
};
|
|
|
|
|
2019-05-21 16:06:59 +00:00
|
|
|
postPatch = ''
|
|
|
|
# remove dependency on pyqtwebengine
|
|
|
|
# this is still part of the pyqt 5.11 version we have in nixpkgs
|
|
|
|
sed -i /pyqtwebengine/d setup.py
|
2021-04-27 16:19:17 +00:00
|
|
|
# The major version bump in watchdog is due to changes in supported
|
|
|
|
# platforms, not API break.
|
|
|
|
# https://github.com/gorakhargosh/watchdog/issues/761#issuecomment-777001518
|
2020-09-21 03:11:25 +00:00
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "pyqt5<5.13" "pyqt5" \
|
2021-04-27 16:19:17 +00:00
|
|
|
--replace "parso==0.7.0" "parso" \
|
|
|
|
--replace "watchdog>=0.10.3,<2.0.0" "watchdog>=0.10.3,<3.0.0"
|
2019-05-21 16:06:59 +00:00
|
|
|
'';
|
|
|
|
|
2013-05-05 11:27:28 +00:00
|
|
|
postInstall = ''
|
2020-03-20 22:13:20 +00:00
|
|
|
# add Python libs to env so Spyder subprocesses
|
|
|
|
# created to run compute kernels don't fail with ImportErrors
|
2021-01-09 05:23:06 +00:00
|
|
|
wrapProgram $out/bin/spyder --prefix PYTHONPATH : "$PYTHONPATH"
|
2020-03-20 22:13:20 +00:00
|
|
|
|
|
|
|
# Create desktop item
|
2017-11-15 15:19:07 +00:00
|
|
|
mkdir -p $out/share/icons
|
|
|
|
cp spyder/images/spyder.svg $out/share/icons
|
|
|
|
cp -r $desktopItem/share/applications/ $out/share
|
2013-05-05 11:27:28 +00:00
|
|
|
'';
|
|
|
|
|
2019-11-11 10:55:38 +00:00
|
|
|
dontWrapQtApps = true;
|
2019-12-10 23:23:57 +00:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
|
|
'';
|
2019-11-11 10:55:38 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Scientific python development environment";
|
2013-05-05 11:13:45 +00:00
|
|
|
longDescription = ''
|
|
|
|
Spyder (previously known as Pydee) is a powerful interactive development
|
|
|
|
environment for the Python language with advanced editing, interactive
|
|
|
|
testing, debugging and introspection features.
|
|
|
|
'';
|
2020-09-21 03:24:29 +00:00
|
|
|
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";
|
2013-05-20 17:33:18 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2019-05-21 15:51:14 +00:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2013-05-05 11:13:45 +00:00
|
|
|
};
|
|
|
|
}
|