mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-24 15:01:56 +03:00
13 lines
166 B
Nix
13 lines
166 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
env.pythonRemoveDeps = [
|
||
|
"torch"
|
||
|
];
|
||
|
mkDerivation.nativeBuildInputs = [
|
||
|
config.deps.python.pkgs.pythonRelaxDepsHook
|
||
|
];
|
||
|
}
|