Pull in improvements from nixpkgs PR.

This commit is contained in:
Tom Alexander
2025-09-06 19:03:20 -04:00
parent b1c85417e1
commit b179bee277
4 changed files with 67 additions and 105 deletions

View File

@@ -127,6 +127,13 @@
);
})
# (final: prev: {
# python = prev.python.override {
# packageOverrides = python-final: python-prev: {
# inherit (pkgs-unoptimized.pythonPackages) coverage;
# };
# };
# })
# (final: prev: {
# pythonPackagesOverlays = prev.pythonPackagesOverlays.extend (
# final': prev': {
# inherit (pkgs-unoptimized.pythonPackagesOverlays)
@@ -135,6 +142,13 @@
# }
# );
# })
# (final: prev: {
# pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
# (python-final: python-prev: {
# inherit (pkgs-unoptimized.pythonPackages) coverage;
# })
# ];
# })
(final: prev: {
inherit (pkgs-unoptimized)
gsl