nixpkgs/pkgs/development/python-modules/spyder/default.nix

60 lines
1.8 KiB
Nix
Raw Normal View History

2019-05-21 17:51:14 +02:00
{ stdenv, buildPythonPackage, fetchPypi, makeDesktopItem, jedi, pycodestyle,
psutil, pyflakes, rope, numpy, scipy, matplotlib, pylint, keyring, numpydoc,
2019-05-21 18:06:59 +02:00
qtconsole, qtawesome, nbconvert, mccabe, pyopengl, cloudpickle, pygments,
spyder-kernels, qtpy, pyzmq, chardet }:
2019-05-21 17:51:14 +02:00
buildPythonPackage rec {
2017-11-15 16:19:07 +01:00
pname = "spyder";
2019-05-21 18:06:59 +02:00
version = "3.3.4";
2019-05-21 17:51:14 +02:00
src = fetchPypi {
2017-11-15 16:19:07 +01:00
inherit pname version;
2019-05-21 18:06:59 +02:00
sha256 = "1fa5yhw0sjk5qydydp76scyxd8lvyciknq0vajnq0mxhhvfig3ra";
};
2019-05-21 17:51:14 +02:00
propagatedBuildInputs = [
2019-02-15 12:45:03 +01:00
jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint keyring
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle spyder-kernels
2019-05-21 18:06:59 +02:00
pygments qtpy pyzmq chardet
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;";
};
2019-05-21 18:06:59 +02: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
'';
2013-05-05 13:27:28 +02:00
# 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.
'';
2019-05-21 17:51:14 +02:00
homepage = "https://github.com/spyder-ide/spyder/";
license = licenses.mit;
platforms = platforms.linux;
2019-05-21 17:51:14 +02:00
maintainers = with maintainers; [ gebner ];
};
}