nixpkgs/pkgs/applications/science/spyder/default.nix

62 lines
1.8 KiB
Nix
Raw Normal View History

2017-11-15 16:19:07 +01:00
{ stdenv, fetchPypi, unzip, buildPythonApplication, makeDesktopItem
# mandatory
, numpydoc, qtconsole, qtawesome, jedi, pycodestyle, psutil
, pyflakes, rope, sphinx, nbconvert, mccabe, pyopengl, cloudpickle
# optional
2017-11-15 16:19:07 +01:00
, numpy ? null, scipy ? null, matplotlib ? null
# optional
, pylint ? null
}:
buildPythonApplication rec {
2017-11-15 16:19:07 +01:00
pname = "spyder";
version = "3.2.8";
2017-11-15 16:19:07 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0iwcby2bxvayz0kp282yh864br55w6gpd8rqcdj1cp3jbn3q6vg5";
};
# 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 = [
jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle
2017-11-15 16:19:07 +01: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
'';
meta = with stdenv.lib; {
description = "Scientific python development environment";
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.
'';
homepage = https://github.com/spyder-ide/spyder/;
license = licenses.mit;
platforms = platforms.linux;
};
}