Merge pull request #64 from nix-community/tables-override

Add tables override
This commit is contained in:
adisbladis 2020-02-27 10:28:53 +00:00 committed by GitHub
commit 99f885eb77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = ''