mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-26 22:31:39 +03:00
08d414a359
- Add community overrides accessible via dream2nix.overrides.{lang}.{pname} - make the pip module use the overrides for dependencies
13 lines
166 B
Nix
13 lines
166 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
env.pythonRemoveDeps = [
|
|
"torch"
|
|
];
|
|
mkDerivation.nativeBuildInputs = [
|
|
config.deps.python.pkgs.pythonRelaxDepsHook
|
|
];
|
|
}
|