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

83 lines
2.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27, makeDesktopItem, intervaltree, jedi, pycodestyle,
2019-05-21 17:51:14 +02:00
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, qdarkstyle, watchdog, python-language-server
2021-01-09 06:23:06 +01:00
, pyqtwebengine, atomicwrites, pyxdg, diff-match-patch, three-merge, pyls-black, pyls-spyder
}:
2019-05-21 17:51:14 +02:00
buildPythonPackage rec {
2017-11-15 16:19:07 +01:00
pname = "spyder";
2020-11-29 15:04:43 +01:00
version = "4.2.0";
disabled = isPy27;
2019-05-21 17:51:14 +02:00
src = fetchPypi {
2017-11-15 16:19:07 +01:00
inherit pname version;
2020-11-29 15:04:43 +01:00
sha256 = "44f51473b81c1bfde76097bfb957ec14f580a262b229ae8e90d18f5b82104c95";
};
2019-11-11 11:55:38 +01:00
nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ];
2019-05-21 17:51:14 +02:00
propagatedBuildInputs = [
intervaltree jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint keyring
2019-02-15 12:45:03 +01:00
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle spyder-kernels
pygments qtpy pyzmq chardet pyqtwebengine qdarkstyle watchdog python-language-server
2021-01-09 06:23:06 +01:00
atomicwrites pyxdg diff-match-patch three-merge pyls-black pyls-spyder
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 = "Development;IDE;";
2013-05-05 13:27:28 +02:00
};
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
substituteInPlace setup.py \
--replace "pyqt5<5.13" "pyqt5" \
--replace "parso==0.7.0" "parso" \
--replace "jedi==0.17.1" "jedi"
2019-05-21 18:06:59 +02:00
'';
2013-05-05 13:27:28 +02:00
postInstall = ''
# add Python libs to env so Spyder subprocesses
# created to run compute kernels don't fail with ImportErrors
2021-01-09 06:23:06 +01:00
wrapProgram $out/bin/spyder --prefix PYTHONPATH : "$PYTHONPATH"
# Create desktop item
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
'';
2019-11-11 11:55:38 +01:00
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
2019-11-11 11:55:38 +01:00
meta = with 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://www.spyder-ide.org/";
downloadPage = "https://github.com/spyder-ide/spyder/releases";
changelog = "https://github.com/spyder-ide/spyder/blob/master/CHANGELOG.md";
license = licenses.mit;
platforms = platforms.linux;
2019-05-21 17:51:14 +02:00
maintainers = with maintainers; [ gebner ];
};
}