buildPython*: allow overriding strictDeps (#60178)
buildPython*: allow overriding strictDeps
This commit is contained in:
commit
a1535da065
|
@ -33,6 +33,9 @@
|
||||||
# DEPRECATED: use propagatedBuildInputs
|
# DEPRECATED: use propagatedBuildInputs
|
||||||
, pythonPath ? []
|
, pythonPath ? []
|
||||||
|
|
||||||
|
# Enabled to detect some (native)BuildInputs mistakes
|
||||||
|
, strictDeps ? true
|
||||||
|
|
||||||
# used to disable derivation, useful for specific python versions
|
# used to disable derivation, useful for specific python versions
|
||||||
, disabled ? false
|
, disabled ? false
|
||||||
|
|
||||||
|
@ -87,8 +90,7 @@ let self = toPythonModule (python.stdenv.mkDerivation (builtins.removeAttrs attr
|
||||||
# Propagate python and setuptools. We should stop propagating setuptools.
|
# Propagate python and setuptools. We should stop propagating setuptools.
|
||||||
propagatedBuildInputs = propagatedBuildInputs ++ [ python setuptools ];
|
propagatedBuildInputs = propagatedBuildInputs ++ [ python setuptools ];
|
||||||
|
|
||||||
# Enabled to detect some (native)BuildInputs mistakes
|
inherit strictDeps;
|
||||||
strictDeps = true;
|
|
||||||
|
|
||||||
LANG = "${if python.stdenv.isDarwin then "en_US" else "C"}.UTF-8";
|
LANG = "${if python.stdenv.isDarwin then "en_US" else "C"}.UTF-8";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue