beets: 1.3.11 -> 1.3.13

This commit is contained in:
codyopel 2015-05-31 23:51:04 -04:00
parent cdf49bb47a
commit dd6946dcbb

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, writeScript, glibcLocales { stdenv, fetchFromGitHub, writeScript, glibcLocales
, buildPythonPackage, pythonPackages, python , buildPythonPackage, pythonPackages, python, imagemagick
, enableAcoustid ? true , enableAcoustid ? true
, enableDiscogs ? true , enableDiscogs ? true
@ -45,8 +45,9 @@ let
"bench" "bpd" "bpm" "bucket" "convert" "cue" "duplicates" "embedart" "bench" "bpd" "bpm" "bucket" "convert" "cue" "duplicates" "embedart"
"filefilter" "freedesktop" "fromfilename" "ftintitle" "fuzzy" "ihate" "filefilter" "freedesktop" "fromfilename" "ftintitle" "fuzzy" "ihate"
"importadded" "importfeeds" "info" "inline" "keyfinder" "lyrics" "importadded" "importfeeds" "info" "inline" "keyfinder" "lyrics"
"mbcollection" "mbsync" "missing" "permissions" "play" "plexupdate" "random" "mbcollection" "mbsync" "metasync" "missing" "permissions" "play"
"rewrite" "scrub" "smartplaylist" "spotify" "the" "types" "zero" "plexupdate" "random" "rewrite" "scrub" "smartplaylist" "spotify" "the"
"types" "zero"
]; ];
enabledOptionalPlugins = attrNames (filterAttrs (_: id) optionalPlugins); enabledOptionalPlugins = attrNames (filterAttrs (_: id) optionalPlugins);
@ -59,18 +60,19 @@ let
in buildPythonPackage rec { in buildPythonPackage rec {
name = "beets-${version}"; name = "beets-${version}";
version = "1.3.11"; version = "1.3.13";
namePrefix = ""; namePrefix = "";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sampsyo"; owner = "sampsyo";
repo = "beets"; repo = "beets";
rev = "v${version}"; rev = "v${version}";
sha256 = "16jb1frds9vl40n9hy18x9xipxfzln3ym823vx8jymhv3by8p62m"; sha256 = "05gnp0y3n1jl7fnyslx56x2lsp8f4mv3xwy7gbyghax0vs3ccfvl";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
pythonPackages.enum34 pythonPackages.enum34
pythonPackages.jellyfish
pythonPackages.munkres pythonPackages.munkres
pythonPackages.musicbrainzngs pythonPackages.musicbrainzngs
pythonPackages.mutagen pythonPackages.mutagen
@ -91,13 +93,10 @@ in buildPythonPackage rec {
buildInputs = with pythonPackages; [ buildInputs = with pythonPackages; [
beautifulsoup4 beautifulsoup4
flask imagemagick
mock mock
nose nose
pyechonest
pylast
rarfile rarfile
requests2
responses responses
]; ];
@ -165,9 +164,9 @@ in buildPythonPackage rec {
''; '';
meta = { meta = {
homepage = http://beets.radbox.org;
description = "Music tagger and library organizer"; description = "Music tagger and library organizer";
license = stdenv.lib.licenses.mit; homepage = http://beets.radbox.org;
maintainers = with stdenv.lib.maintainers; [ iElectric aszlig pjones ]; license = licenses.mit;
maintainers = with maintainers; [ aszlig iElectric pjones ];
}; };
} }