2020-03-20 22:13:20 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27, makeDesktopItem, intervaltree, jedi, pycodestyle,
|
2019-05-21 16:51:14 +01:00
|
|
|
psutil, pyflakes, rope, numpy, scipy, matplotlib, pylint, keyring, numpydoc,
|
2019-05-21 17:06:59 +01:00
|
|
|
qtconsole, qtawesome, nbconvert, mccabe, pyopengl, cloudpickle, pygments,
|
2020-02-16 08:52:25 +00:00
|
|
|
spyder-kernels, qtpy, pyzmq, chardet, qdarkstyle, watchdog, python-language-server
|
2020-03-20 22:13:20 +00:00
|
|
|
, pyqtwebengine, atomicwrites, pyxdg, diff-match-patch
|
2019-08-03 13:13:33 +01:00
|
|
|
}:
|
2013-05-05 12:13:45 +01:00
|
|
|
|
2019-05-21 16:51:14 +01:00
|
|
|
buildPythonPackage rec {
|
2017-11-15 15:19:07 +00:00
|
|
|
pname = "spyder";
|
2020-05-09 11:02:01 +01:00
|
|
|
version = "4.1.3";
|
2020-03-20 22:13:20 +00:00
|
|
|
|
|
|
|
disabled = isPy27;
|
2013-05-05 12:13:45 +01:00
|
|
|
|
2019-05-21 16:51:14 +01:00
|
|
|
src = fetchPypi {
|
2017-11-15 15:19:07 +00:00
|
|
|
inherit pname version;
|
2020-05-09 11:02:01 +01:00
|
|
|
sha256 = "c88d973c6423fe0017818482a98163bb72e7f6a8c3127ff464930109df0958d9";
|
2013-05-05 12:13:45 +01:00
|
|
|
};
|
|
|
|
|
2019-11-11 10:55:38 +00:00
|
|
|
nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ];
|
|
|
|
|
2019-05-21 16:51:14 +01:00
|
|
|
propagatedBuildInputs = [
|
2020-02-16 08:52:25 +00:00
|
|
|
intervaltree jedi pycodestyle psutil pyflakes 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
|
2020-03-20 22:13:20 +00:00
|
|
|
atomicwrites pyxdg diff-match-patch
|
2017-11-15 15:19:07 +00:00
|
|
|
];
|
2013-05-05 12:13:45 +01:00
|
|
|
|
|
|
|
# There is no test for spyder
|
|
|
|
doCheck = false;
|
|
|
|
|
2013-05-05 12:27:28 +01:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "Spyder";
|
|
|
|
exec = "spyder";
|
|
|
|
icon = "spyder";
|
|
|
|
comment = "Scientific Python Development Environment";
|
|
|
|
desktopName = "Spyder";
|
|
|
|
genericName = "Python IDE";
|
2020-06-25 03:18:37 +01:00
|
|
|
categories = "Development;IDE;";
|
2013-05-05 12:27:28 +01:00
|
|
|
};
|
|
|
|
|
2019-05-21 17:06:59 +01: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
|
2019-08-03 13:13:33 +01:00
|
|
|
substituteInPlace setup.py --replace "pyqt5<5.13" "pyqt5"
|
2019-05-21 17:06:59 +01:00
|
|
|
'';
|
|
|
|
|
2013-05-05 12:27:28 +01: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
|
|
|
|
wrapProgram $out/bin/spyder3 --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
|
|
|
|
# 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 12:27:28 +01: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
|
|
|
|
2013-05-20 18:33:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Scientific python development environment";
|
2013-05-05 12:13:45 +01: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.
|
|
|
|
'';
|
2019-05-21 16:51:14 +01:00
|
|
|
homepage = "https://github.com/spyder-ide/spyder/";
|
2013-05-20 18:33:18 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2019-05-21 16:51:14 +01:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2013-05-05 12:13:45 +01:00
|
|
|
};
|
|
|
|
}
|