python3Packages.causal-conv1d: fix inverted broken condition

This commit is contained in:
blenderfreaky
2026-01-16 01:31:55 +01:00
parent c4ac82ba32
commit 330086053a
@@ -87,6 +87,6 @@ buildPythonPackage rec {
# The package requires either CUDA or ROCm.
# It doesn't work without either, nor with both.
broken = cudaSupport != rocmSupport;
broken = cudaSupport == rocmSupport;
};
}