keybinder: do not use top-level python packages

This commit is contained in:
Frederik Rietdijk 2016-09-25 23:55:31 +02:00
parent aa23f61120
commit a0fc782d6e

View File

@ -1,8 +1,10 @@
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, gnome3, pygobject3, pygtk
, gtk_doc, gtk2, python, lua, libX11, libXext, libXrender, gobjectIntrospection
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, gnome3
, gtk_doc, gtk2, pythonPackages, lua, libX11, libXext, libXrender, gobjectIntrospection
}:
stdenv.mkDerivation rec {
let
inherit (pythonPackages) python pygobject3 pygtk;
in stdenv.mkDerivation rec {
name = "keybinder-${version}";
version = "0.3.0";