Skip to content

Commit be1fe79

Browse files
Merge pull request #1895 from nix-community/add-overrides
Add additional overrides
2 parents 75d0515 + b0b33d4 commit be1fe79

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

overrides/build-systems.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9885,8 +9885,22 @@
98859885
"setuptools"
98869886
],
98879887
"isort": [
9888-
"poetry-core",
9889-
"setuptools"
9888+
{
9889+
"buildSystem": "poetry-core",
9890+
"until": "5.13.2"
9891+
},
9892+
{
9893+
"buildSystem": "setuptools",
9894+
"until": "5.13.2"
9895+
},
9896+
{
9897+
"buildSystem": "hatch-vcs",
9898+
"from": "6.0.0"
9899+
},
9900+
{
9901+
"buildSystem": "hatchling",
9902+
"from": "6.0.0"
9903+
}
98909904
],
98919905
"isosurfaces": [
98929906
"setuptools"
@@ -26142,6 +26156,9 @@
2614226156
"types-mock": [
2614326157
"setuptools"
2614426158
],
26159+
"types-mysqlclient": [
26160+
"setuptools"
26161+
],
2614526162
"types-oauthlib": [
2614626163
"setuptools"
2614726164
],

overrides/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3166,6 +3166,10 @@ lib.composeManyExtensions [
31663166
propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ pkgs.hdf5 ];
31673167
}
31683168
);
3169+
pyyaml = prev.pyyaml.overridePythonAttrs (
3170+
old: {
3171+
buildInputs = old.buildInputs or [ ] ++ [ pkgs.libyaml ];
3172+
});
31693173

31703174
pyzmq = prev.pyzmq.overridePythonAttrs (
31713175
old: {

0 commit comments

Comments
 (0)