2017-01-06 12:46:38 +01:00
|
|
|
{ stdenv, python2Packages, fetchurl, gettext, chromaprint }:
|
2012-09-05 01:15:23 +02:00
|
|
|
|
2016-08-14 12:37:20 +02:00
|
|
|
let
|
2017-02-14 16:08:51 +01:00
|
|
|
version = "1.4";
|
2016-10-17 21:51:31 +02:00
|
|
|
pythonPackages = python2Packages;
|
2016-08-14 12:37:20 +02:00
|
|
|
in pythonPackages.buildPythonApplication {
|
2012-09-05 01:15:23 +02:00
|
|
|
name = "picard-${version}";
|
2014-12-18 23:15:36 +01:00
|
|
|
namePrefix = "";
|
2012-09-05 01:15:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-10 01:21:41 +01:00
|
|
|
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
|
2017-02-14 16:08:51 +01:00
|
|
|
sha256 = "0gi7f1h7jcg7n18cx8iw38sd868viv3w377xmi7cq98f1g76d4h6";
|
2012-09-05 01:15:23 +02:00
|
|
|
};
|
|
|
|
|
2017-01-06 12:46:38 +01:00
|
|
|
buildInputs = [ gettext ];
|
2012-09-05 01:15:23 +02:00
|
|
|
|
2016-08-14 12:37:20 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2012-09-05 01:15:23 +02:00
|
|
|
pyqt4
|
2014-10-29 18:45:56 +01:00
|
|
|
mutagen
|
2016-08-14 12:37:20 +02:00
|
|
|
discid
|
2012-09-05 01:15:23 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2014-08-23 23:56:06 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://musicbrainz.org/doc/MusicBrainz_Picard;
|
2012-09-05 01:15:23 +02:00
|
|
|
description = "The official MusicBrainz tagger";
|
2015-12-05 22:41:25 +01:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 23:56:06 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2012-09-05 01:15:23 +02:00
|
|
|
};
|
|
|
|
}
|