python3Packages.spyder: fix build

* Remove version locks that don't match what's in nixpkgs
This commit is contained in:
Drew Risinger 2020-09-20 23:11:25 -04:00 committed by Jon
parent a95bf523fc
commit 3b6800c76a

View file

@ -42,7 +42,10 @@ buildPythonPackage rec {
# 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"
substituteInPlace setup.py \
--replace "pyqt5<5.13" "pyqt5" \
--replace "parso==0.7.0" "parso" \
--replace "jedi==0.17.1" "jedi"
'';
postInstall = ''