mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Merge pull request #64 from nix-community/tables-override
Add tables override
This commit is contained in:
commit
99f885eb77
1 changed files with 8 additions and 0 deletions
|
@ -603,6 +603,14 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
tables = super.tables.overrideAttrs (
|
||||||
|
old: {
|
||||||
|
HDF5_DIR = "${pkgs.hdf5}";
|
||||||
|
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkgconfig ];
|
||||||
|
propagatedBuildInputs = old.nativeBuildInputs ++ [ pkgs.hdf5 self.numpy self.numexpr ];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
tensorpack = super.tensorpack.overrideAttrs (
|
tensorpack = super.tensorpack.overrideAttrs (
|
||||||
old: {
|
old: {
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Add table
Reference in a new issue