spyder: 3.3.3 -> 3.3.4
This commit is contained in:
parent
7f68caa38f
commit
8f4ae93be3
@ -1,20 +1,21 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, makeDesktopItem, jedi, pycodestyle,
|
{ stdenv, buildPythonPackage, fetchPypi, makeDesktopItem, jedi, pycodestyle,
|
||||||
psutil, pyflakes, rope, numpy, scipy, matplotlib, pylint, keyring, numpydoc,
|
psutil, pyflakes, rope, numpy, scipy, matplotlib, pylint, keyring, numpydoc,
|
||||||
qtconsole, qtawesome, nbconvert, mccabe, pyopengl, cloudpickle,
|
qtconsole, qtawesome, nbconvert, mccabe, pyopengl, cloudpickle, pygments,
|
||||||
spyder-kernels }:
|
spyder-kernels, qtpy, pyzmq, chardet }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "spyder";
|
pname = "spyder";
|
||||||
version = "3.3.3";
|
version = "3.3.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "ef31de03cf6f149077e64ed5736b8797dbd278e3c925e43f0bfc31bb55f6e5ba";
|
sha256 = "1fa5yhw0sjk5qydydp76scyxd8lvyciknq0vajnq0mxhhvfig3ra";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint keyring
|
jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint keyring
|
||||||
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle spyder-kernels
|
numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle spyder-kernels
|
||||||
|
pygments qtpy pyzmq chardet
|
||||||
];
|
];
|
||||||
|
|
||||||
# There is no test for spyder
|
# There is no test for spyder
|
||||||
@ -30,6 +31,12 @@ buildPythonPackage rec {
|
|||||||
categories = "Application;Development;Editor;IDE;";
|
categories = "Application;Development;Editor;IDE;";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
# Create desktop item
|
# Create desktop item
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
|
Loading…
Reference in New Issue
Block a user