mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
Merge pull request #18696 from FRidh/buildenv
python.buildenv: don't filter non-python packages
This commit is contained in:
@@ -8,7 +8,7 @@ let
|
||||
recursivePthLoader = import ../../python-modules/recursive-pth-loader/default.nix { stdenv = stdenv; python = python; };
|
||||
env = (
|
||||
let
|
||||
paths = stdenv.lib.filter (x : x ? pythonPath) (stdenv.lib.closePropagation extraLibs) ++ [ python recursivePthLoader ];
|
||||
paths = stdenv.lib.closePropagation (extraLibs ++ [ python recursivePthLoader ] ) ;
|
||||
in buildEnv {
|
||||
name = "${python.name}-env";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user