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