uzbl: do not use top-level python packages

This commit is contained in:
Frederik Rietdijk 2016-09-26 10:18:21 +02:00
parent debfe4f124
commit f84bc4e505

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, python3, makeWrapper, pygtk { stdenv, fetchurl, pkgconfig, python3, makeWrapper
, webkit, glib_networking, gsettings_desktop_schemas, pythonPackages , webkit, glib_networking, gsettings_desktop_schemas, python2Packages
}: }:
# This package needs python3 during buildtime, # This package needs python3 during buildtime,
# but Python 2 + packages during runtime. # but Python 2 + packages during runtime.
@ -40,5 +40,5 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig python3 makeWrapper ]; nativeBuildInputs = [ pkgconfig python3 makeWrapper ];
buildInputs = [ gsettings_desktop_schemas webkit ]; buildInputs = [ gsettings_desktop_schemas webkit ];
propagatedBuildInputs = [ pygtk pythonPackages.six ]; propagatedBuildInputs = with python2Packages; [ pygtk six ];
} }