Skip to content

Commit

Permalink
python3Packages.spyder: fix build
Browse files Browse the repository at this point in the history
* Remove version locks that don't match what's in nixpkgs
  • Loading branch information
drewrisinger authored and Jon committed Sep 21, 2020
1 parent a95bf52 commit 3b6800c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/spyder/default.nix
Expand Up @@ -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 = ''
Expand Down

0 comments on commit 3b6800c

Please sign in to comment.