2014-12-30 22:53:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, writeScript
|
|
|
|
, buildPythonPackage, pythonPackages, python
|
2014-12-30 03:23:37 +01:00
|
|
|
|
2014-12-30 22:53:00 +01:00
|
|
|
, enableAcoustid ? true
|
|
|
|
, enableBeatport ? true
|
|
|
|
, enableDiscogs ? true
|
|
|
|
, enableEchonest ? true
|
|
|
|
, enableFetchart ? true
|
|
|
|
, enableLastfm ? true
|
|
|
|
, enableMpd ? true
|
|
|
|
, enableReplaygain ? true
|
|
|
|
, enableWeb ? true
|
|
|
|
|
|
|
|
, bashInteractive, bashCompletion
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableAcoustid -> pythonPackages.pyacoustid != null;
|
|
|
|
assert enableBeatport -> pythonPackages.responses != null;
|
|
|
|
assert enableDiscogs -> pythonPackages.discogs_client != null;
|
|
|
|
assert enableEchonest -> pythonPackages.pyechonest != null;
|
|
|
|
assert enableFetchart -> pythonPackages.responses != null;
|
|
|
|
assert enableLastfm -> pythonPackages.pylast != null;
|
|
|
|
assert enableMpd -> pythonPackages.mpd != null;
|
|
|
|
assert enableReplaygain -> pythonPackages.audiotools != null;
|
|
|
|
assert enableWeb -> pythonPackages.flask != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
optionalPlugins = {
|
|
|
|
beatport = enableBeatport;
|
|
|
|
chroma = enableAcoustid;
|
|
|
|
discogs = enableDiscogs;
|
|
|
|
echonest = enableEchonest;
|
|
|
|
echonest_tempo = enableEchonest;
|
|
|
|
fetchart = enableFetchart;
|
|
|
|
lastgenre = enableLastfm;
|
|
|
|
lastimport = enableLastfm;
|
|
|
|
mpdstats = enableMpd;
|
|
|
|
mpdupdate = enableMpd;
|
|
|
|
replaygain = enableReplaygain;
|
|
|
|
web = enableWeb;
|
|
|
|
};
|
|
|
|
|
|
|
|
pluginsWithoutDeps = [
|
|
|
|
"bench" "bpd" "bpm" "bucket" "convert" "duplicates" "embedart" "freedesktop"
|
|
|
|
"fromfilename" "ftintitle" "fuzzy" "ihate" "importadded" "importfeeds"
|
|
|
|
"info" "inline" "keyfinder" "lyrics" "mbcollection" "mbsync" "missing"
|
|
|
|
"play" "random" "rewrite" "scrub" "smartplaylist" "spotify" "the" "types"
|
|
|
|
"zero"
|
|
|
|
];
|
|
|
|
|
|
|
|
enabledOptionalPlugins = attrNames (filterAttrs (_: id) optionalPlugins);
|
|
|
|
|
|
|
|
allPlugins = pluginsWithoutDeps ++ attrNames optionalPlugins;
|
|
|
|
|
|
|
|
testShell = "${bashInteractive}/bin/bash --norc";
|
|
|
|
completion = "${bashCompletion}/share/bash-completion/bash_completion";
|
|
|
|
|
|
|
|
in buildPythonPackage rec {
|
2014-12-30 22:46:22 +01:00
|
|
|
name = "beets-${version}";
|
|
|
|
version = "1.3.9";
|
2014-12-30 03:23:37 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
2014-12-30 22:46:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sampsyo";
|
|
|
|
repo = "beets";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1srhkiyjqx6i3gn20ihf087l5pa77yh5b81ivc52lj491fda7xqk";
|
2014-12-30 03:23:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2014-12-30 22:53:00 +01:00
|
|
|
pythonPackages.enum34
|
2014-12-30 03:23:37 +01:00
|
|
|
pythonPackages.munkres
|
|
|
|
pythonPackages.musicbrainzngs
|
2014-12-30 22:53:00 +01:00
|
|
|
pythonPackages.mutagen
|
|
|
|
pythonPackages.pyyaml
|
|
|
|
pythonPackages.unidecode
|
2014-12-30 03:23:37 +01:00
|
|
|
python.modules.sqlite3
|
|
|
|
python.modules.readline
|
2014-12-30 22:53:00 +01:00
|
|
|
] ++ optional enableAcoustid pythonPackages.pyacoustid
|
|
|
|
++ optional (enableBeatport || enableFetchart) pythonPackages.requests2
|
|
|
|
++ optional enableDiscogs pythonPackages.discogs_client
|
|
|
|
++ optional enableEchonest pythonPackages.pyechonest
|
|
|
|
++ optional enableLastfm pythonPackages.pylast
|
|
|
|
++ optional enableMpd pythonPackages.mpd
|
|
|
|
++ optional enableReplaygain pythonPackages.audiotools
|
|
|
|
++ optional enableWeb pythonPackages.flask;
|
|
|
|
|
|
|
|
buildInputs = with pythonPackages; [
|
|
|
|
beautifulsoup4
|
|
|
|
flask
|
|
|
|
mock
|
|
|
|
nose
|
|
|
|
pyechonest
|
|
|
|
pylast
|
|
|
|
rarfile
|
|
|
|
requests2
|
|
|
|
responses
|
2014-12-30 03:23:37 +01:00
|
|
|
];
|
|
|
|
|
2014-12-30 23:06:28 +01:00
|
|
|
patches = [
|
|
|
|
./mediafile-codec-fix.patch
|
|
|
|
./replaygain-default-audiotools.patch
|
|
|
|
];
|
2014-12-30 22:53:00 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/assertIn.*item.*path/d' test/test_info.py
|
|
|
|
echo echo completion tests passed > test/test_completion.sh
|
|
|
|
|
|
|
|
sed -i -e '/^BASH_COMPLETION_PATHS *=/,/^])$/ {
|
|
|
|
/^])$/i u"${completion}"
|
|
|
|
}' beets/ui/commands.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
|
|
|
|
BEETS_TEST_SHELL="${testShell}" \
|
|
|
|
BASH_COMPLETION_SCRIPT="${completion}" \
|
|
|
|
HOME="$(mktemp -d)" \
|
|
|
|
nosetests -v
|
|
|
|
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
2014-12-30 03:23:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|