dream2nix/overrides/python/triton/default.nix
DavHau 08d414a359 feat: community overrides
- Add community overrides accessible via dream2nix.overrides.{lang}.{pname}
- make the pip module use the overrides for dependencies
2023-09-12 00:07:04 +02:00

13 lines
166 B
Nix

{
config,
lib,
...
}: {
env.pythonRemoveDeps = [
"torch"
];
mkDerivation.nativeBuildInputs = [
config.deps.python.pkgs.pythonRelaxDepsHook
];
}