2014-12-30 03:23:37 +01:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, pythonPackages, python }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2014-12-30 03:29:16 +01:00
|
|
|
name = "beets-1.3.9";
|
2014-12-30 03:23:37 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://pypi.python.org/packages/source/b/beets/${name}.tar.gz";
|
2014-12-30 03:29:16 +01:00
|
|
|
md5 = "0211b4abfe7887da22c1413e761fdcb4";
|
2014-12-30 03:23:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# tests depend on $HOME setting
|
|
|
|
preConfigure = "export HOME=$TMPDIR";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pythonPackages.pyyaml
|
|
|
|
pythonPackages.unidecode
|
|
|
|
pythonPackages.mutagen
|
|
|
|
pythonPackages.munkres
|
|
|
|
pythonPackages.musicbrainzngs
|
|
|
|
pythonPackages.enum34
|
|
|
|
pythonPackages.pylast
|
|
|
|
pythonPackages.rarfile
|
|
|
|
pythonPackages.flask
|
|
|
|
python.modules.sqlite3
|
|
|
|
python.modules.readline
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = with pythonPackages; [ mock pyechonest six responses nose ];
|
|
|
|
|
|
|
|
# 10 tests are failing
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://beets.radbox.org;
|
|
|
|
description = "Music tagger and library organizer";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
2014-12-30 03:31:27 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ iElectric aszlig ];
|
2014-12-30 03:23:37 +01:00
|
|
|
};
|
|
|
|
}
|