nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.spyder: fix build

* Remove version locks that don't match what's in nixpkgs

(cherry picked from commit 3b6800c76a53426de8fe7c4ca09eaa56844d4cde)

+4 -1
+4 -1
pkgs/development/python-modules/spyder/default.nix
··· 42 42 # remove dependency on pyqtwebengine 43 43 # this is still part of the pyqt 5.11 version we have in nixpkgs 44 44 sed -i /pyqtwebengine/d setup.py 45 - substituteInPlace setup.py --replace "pyqt5<5.13" "pyqt5" 45 + substituteInPlace setup.py \ 46 + --replace "pyqt5<5.13" "pyqt5" \ 47 + --replace "parso==0.7.0" "parso" \ 48 + --replace "jedi==0.17.1" "jedi" 46 49 ''; 47 50 48 51 postInstall = ''