forked from mirrors/nixpkgs
nox: use propagatedBuildInputs instead of pythonPath, fixes #9633
This way, when accessing Nox via Python, the dependencies will be available.
This commit is contained in:
parent
f5205a7ba6
commit
3e0fab3864
|
@ -12,7 +12,7 @@ pythonPackages.buildPythonPackage rec {
|
||||||
|
|
||||||
buildInputs = [ pythonPackages.pbr ];
|
buildInputs = [ pythonPackages.pbr ];
|
||||||
|
|
||||||
pythonPath = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
dogpile_cache
|
dogpile_cache
|
||||||
click
|
click
|
||||||
requests2
|
requests2
|
||||||
|
|
Loading…
Reference in a new issue