python3Packages.causal-conv1d: fix inverted broken condition (#480740)

This commit is contained in:
Aleksana
2026-01-16 16:19:26 +00:00
committed by GitHub
@@ -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;
};
}