summary refs log tree commit diff
path: root/pkgs/tools/audio/mpdris2
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-10-06 20:34:35 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-10-10 10:33:24 +0200
commit104c50dd1a310ba176562d3e33df37fd4f89e804 (patch)
tree26e18b023f06adc94365dc0c387f5640617cf1eb /pkgs/tools/audio/mpdris2
parenta2720a25b9d38a421cce4a6e6caf685481e6c40a (diff)
downloadnixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.tar
nixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.gz
nixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.bz2
nixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.lz
nixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.xz
nixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.zst
nixpkgs-104c50dd1a310ba176562d3e33df37fd4f89e804.zip
Python: remove modules and pythonFull
Diffstat (limited to 'pkgs/tools/audio/mpdris2')
-rw-r--r--pkgs/tools/audio/mpdris2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/audio/mpdris2/default.nix b/pkgs/tools/audio/mpdris2/default.nix
index beb69db8581..bbec851b25c 100644
--- a/pkgs/tools/audio/mpdris2/default.nix
+++ b/pkgs/tools/audio/mpdris2/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, autoreconfHook, intltool
-, pythonPackages, pythonFull
+, pythonPackages
 }:
 
 stdenv.mkDerivation rec {
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [ intltool autoreconfHook pythonPackages.wrapPython ];
-  propagatedBuildInputs = with pythonPackages; [ pythonFull  pygtk dbus-python ];
+  propagatedBuildInputs = with pythonPackages; [ python pygtk dbus-python ];
   pythonPath = with pythonPackages; [ mpd pygtk dbus-python notify ];
   postInstall = "wrapPythonPrograms";