diff --git a/pkgs/applications/science/misc/gplates/default.nix b/pkgs/applications/science/misc/gplates/default.nix index 835c66c3251f..7cbf37fcaf8a 100644 --- a/pkgs/applications/science/misc/gplates/default.nix +++ b/pkgs/applications/science/misc/gplates/default.nix @@ -14,15 +14,13 @@ , libGLU , mpfr , proj -# build with Python 3.10 fails, because boost <= 1.78 can't find -# pythons with double digits in minor versions, like X.YZ -, python39 +, python3 , qtxmlpatterns , qwt }: let - python = python39.withPackages (ps: with ps; [ + python = python3.withPackages (ps: with ps; [ numpy ]); boost' = boost.override { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 46d83b70e905..e79424b0e308 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -36227,6 +36227,8 @@ with pkgs; gplates = libsForQt5.callPackage ../applications/science/misc/gplates { boost = boost175; + # build with Python 3.10 fails, because boost <= 1.78 can't find + # pythons with double digits in minor versions, like X.YZ python3 = python39; };