Skip to content

Commit

Permalink
chore: add more darwin overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Dec 16, 2024
1 parent 011f85a commit 6a0d95f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions nix/pyproject-overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,13 @@ in
pkgs.arrow-cpp
];
});
}) // lib.mapAttrs (name: spec: addBuildSystems prev.${name} spec) buildSystemOverrides // {

scipy = prev.scipy.overrideAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs or [ ] ++ [
final.meson-python
final.pyproject-metadata
final.cython
final.packaging
final.pythran
pkgs.ninja
pkgs.meson
pkgs.gfortran
Expand Down Expand Up @@ -90,8 +89,6 @@ in
PROJ_INCDIR = "${lib.getDev pkgs.proj}";
});

inherit (prev) pythran;

pyogrio = prev.pyogrio.overrideAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs or [ ] ++ [
final.setuptools
Expand All @@ -100,7 +97,7 @@ in
pkgs.gdal
];
});

}) // lib.mapAttrs (name: spec: addBuildSystems prev.${name} spec) buildSystemOverrides // {
mysqlclient = prev.mysqlclient.overrideAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs or [ ] ++ [ final.setuptools ];
buildInputs = attrs.buildInputs or [ ] ++ [ pkgs.pkg-config pkgs.libmysqlclient ];
Expand Down

0 comments on commit 6a0d95f

Please sign in to comment.