2017-11-15 16:19:07 +01:00
|
|
|
{ stdenv, fetchPypi, unzip, buildPythonApplication, makeDesktopItem
|
2013-05-05 14:38:31 +02:00
|
|
|
# mandatory
|
2018-02-04 10:17:35 +01:00
|
|
|
, numpydoc, qtconsole, qtawesome, jedi, pycodestyle, psutil
|
|
|
|
, pyflakes, rope, sphinx, nbconvert, mccabe, pyopengl, cloudpickle
|
2013-05-05 14:38:31 +02:00
|
|
|
# optional
|
2017-11-15 16:19:07 +01:00
|
|
|
, numpy ? null, scipy ? null, matplotlib ? null
|
|
|
|
# optional
|
|
|
|
, pylint ? null
|
2013-05-05 14:38:31 +02:00
|
|
|
}:
|
2013-05-05 13:13:45 +02:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
buildPythonApplication rec {
|
2017-11-15 16:19:07 +01:00
|
|
|
pname = "spyder";
|
2018-03-30 19:24:19 +02:00
|
|
|
version = "3.2.8";
|
2013-05-05 13:13:45 +02:00
|
|
|
|
2017-11-15 16:19:07 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-03-30 19:24:19 +02:00
|
|
|
sha256 = "0iwcby2bxvayz0kp282yh864br55w6gpd8rqcdj1cp3jbn3q6vg5";
|
2013-05-05 13:13:45 +02:00
|
|
|
};
|
|
|
|
|
2018-02-04 10:17:35 +01:00
|
|
|
# Somehow setuptools can't find pyqt5. Maybe because the dist-info folder is missing?
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace 'pyqt5;python_version>="3"' ' '
|
|
|
|
'';
|
|
|
|
|
2017-11-15 16:19:07 +01:00
|
|
|
propagatedBuildInputs = [
|
2018-02-04 10:17:35 +01:00
|
|
|
jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint
|
|
|
|
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle
|
2017-11-15 16:19:07 +01:00
|
|
|
];
|
2013-05-05 13:13:45 +02:00
|
|
|
|
|
|
|
# There is no test for spyder
|
|
|
|
doCheck = false;
|
|
|
|
|
2013-05-05 13:27:28 +02:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "Spyder";
|
|
|
|
exec = "spyder";
|
|
|
|
icon = "spyder";
|
|
|
|
comment = "Scientific Python Development Environment";
|
|
|
|
desktopName = "Spyder";
|
|
|
|
genericName = "Python IDE";
|
|
|
|
categories = "Application;Development;Editor;IDE;";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Create desktop item
|
|
|
|
postInstall = ''
|
2017-11-15 16:19:07 +01:00
|
|
|
mkdir -p $out/share/icons
|
|
|
|
cp spyder/images/spyder.svg $out/share/icons
|
|
|
|
cp -r $desktopItem/share/applications/ $out/share
|
2013-05-05 13:27:28 +02:00
|
|
|
'';
|
|
|
|
|
2013-05-20 19:33:18 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Scientific python development environment";
|
2013-05-05 13:13:45 +02: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.
|
|
|
|
'';
|
2015-08-08 22:02:12 +02:00
|
|
|
homepage = https://github.com/spyder-ide/spyder/;
|
2013-05-20 19:33:18 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2013-05-05 13:13:45 +02:00
|
|
|
};
|
|
|
|
}
|