python3Packages.warp-lang: 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:
@@ -43,7 +43,7 @@ let
|
||||
|
||||
libmathdx = callPackage ./libmathdx.nix { };
|
||||
in
|
||||
buildPythonPackage {
|
||||
buildPythonPackage.override { stdenv = effectiveStdenv; } {
|
||||
pname = "warp-lang";
|
||||
inherit version;
|
||||
pyproject = true;
|
||||
@@ -53,8 +53,6 @@ buildPythonPackage {
|
||||
# provided by NVCC.
|
||||
__structuredAttrs = true;
|
||||
|
||||
stdenv = effectiveStdenv;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "NVIDIA";
|
||||
repo = "warp";
|
||||
|
||||
Reference in New Issue
Block a user