mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
linkchecker: fix bad interaction with python3
Previously, `nix-shell -p linkchecker python3` would lead to a broken `python3` command. That's because Python 2 packages would pollute the environment and confuse the interpreter. `linkchecker` has propagated build inputs. So the solution is to use `pythonPath` instead, to avoid the pollution.
This commit is contained in:
parent
83d6250145
commit
361e9185c8
@ -19,7 +19,7 @@ python2Packages.buildPythonApplication rec {
|
||||
version = "9.3.1";
|
||||
|
||||
nativeBuildInputs = [ gettext ];
|
||||
propagatedBuildInputs = (with python2Packages; [
|
||||
pythonPath = (with python2Packages; [
|
||||
requests
|
||||
]) ++ [ gettext ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user