Skip to content

Commit

Permalink
Merge pull request #1895 from nix-community/add-overrides
Browse files Browse the repository at this point in the history
Add additional overrides
  • Loading branch information
Nebucatnetzer authored Feb 5, 2025
2 parents 75d0515 + b0b33d4 commit be1fe79
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 19 additions & 2 deletions overrides/build-systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -9885,8 +9885,22 @@
"setuptools"
],
"isort": [
"poetry-core",
"setuptools"
{
"buildSystem": "poetry-core",
"until": "5.13.2"
},
{
"buildSystem": "setuptools",
"until": "5.13.2"
},
{
"buildSystem": "hatch-vcs",
"from": "6.0.0"
},
{
"buildSystem": "hatchling",
"from": "6.0.0"
}
],
"isosurfaces": [
"setuptools"
Expand Down Expand Up @@ -26142,6 +26156,9 @@
"types-mock": [
"setuptools"
],
"types-mysqlclient": [
"setuptools"
],
"types-oauthlib": [
"setuptools"
],
Expand Down
4 changes: 4 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3166,6 +3166,10 @@ lib.composeManyExtensions [
propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ pkgs.hdf5 ];
}
);
pyyaml = prev.pyyaml.overridePythonAttrs (
old: {
buildInputs = old.buildInputs or [ ] ++ [ pkgs.libyaml ];
});

pyzmq = prev.pyzmq.overridePythonAttrs (
old: {
Expand Down

0 comments on commit be1fe79

Please sign in to comment.