mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
system-config-printer: recurse into python dependencies
pythonPath is used to create the eventual wrappers. It does not recurse into the Python dependencies, which means e.g. requests doesn't haven its dependencies.
This commit is contained in:
parent
8d9f1701e6
commit
9544383744
1 changed files with 1 additions and 2 deletions
|
@ -28,8 +28,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ wrapGAppsHook ];
|
||||
|
||||
pythonPath = with pythonPackages;
|
||||
[ pycups pycurl dbus-python pygobject3 requests pycairo pysmbc ];
|
||||
pythonPath = with pythonPackages; requiredPythonModules [ pycups pycurl dbus-python pygobject3 requests pycairo pysmbc ];
|
||||
|
||||
configureFlags =
|
||||
[ "--with-udev-rules"
|
||||
|
|
Loading…
Reference in a new issue