python3Packages.verilogae: pass custom stdenv to buildPythonApplication with an override

Passing `stdenv` directly to `buildPythonPackage` or `buildPythonApplication`
is deprecated with `oldestSupportedRelease = 2511`.
This commit is contained in:
Leona Maroni
2026-01-05 15:44:39 +01:00
parent 8c40583b0e
commit c34997d830
@@ -14,13 +14,11 @@
zlib,
}:
buildPythonPackage rec {
buildPythonPackage.override { stdenv = llvmPackages.stdenv; } rec {
pname = "verilogae";
version = "24.0.0mob-unstable-2025-07-21";
pyproject = true;
stdenv = llvmPackages.stdenv;
src = fetchFromGitHub {
owner = "OpenVAF";
repo = "OpenVAF-Reloaded";