python: Add new package audiotools.

This is needed for the replaygain plugin in beets.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-12-30 22:36:09 +01:00 committed by Peter Simons
parent dc243f9d30
commit f8702f3207

View file

@ -546,6 +546,21 @@ let
};
};
audiotools = buildPythonPackage rec {
name = "audiotools-2.22";
src = pkgs.fetchurl {
url = "mirror://sourceforge/audiotools/${name}.tar.gz";
sha256 = "1c52pggsbxdbj8h92njf4h0jgfndh4yv58ad723pidys47nw1y71";
};
meta = {
description = "Utilities and Python modules for handling audio.";
homepage = "http://audiotools.sourceforge.net/";
license = stdenv.lib.licenses.gpl2Plus;
};
};
autopep8 = buildPythonPackage (rec {
name = "autopep8-1.0.4";