summary refs log tree commit diff
path: root/pkgs/tools/audio
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
parenta2720a25b9d38a421cce4a6e6caf685481e6c40a (diff)
downloadnixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.tar
nixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.gz
nixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.bz2
nixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.lz
nixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.xz
nixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.tar.zst
nixlib-104c50dd1a310ba176562d3e33df37fd4f89e804.zip
Python: remove modules and pythonFull
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/beets/default.nix2
-rw-r--r--pkgs/tools/audio/mpdris2/default.nix4
2 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index 05d8bd0990f5..c7b1d6950412 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -92,8 +92,6 @@ in pythonPackages.buildPythonApplication rec {
     pythonPackages.pathlib
     pythonPackages.pyyaml
     pythonPackages.unidecode
-    pythonPackages.python.modules.sqlite3
-    pythonPackages.python.modules.readline
   ] ++ optional enableAcoustid     pythonPackages.pyacoustid
     ++ optional (enableFetchart
               || enableEmbyupdate
diff --git a/pkgs/tools/audio/mpdris2/default.nix b/pkgs/tools/audio/mpdris2/default.nix
index beb69db85815..bbec851b25cc 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";