2018-11-02 17:47:58 +00:00
|
|
|
|
{ stdenv, python3Packages, fetchurl, gettext, chromaprint }:
|
2012-09-05 00:15:23 +01:00
|
|
|
|
|
2016-08-14 11:37:20 +01:00
|
|
|
|
let
|
2018-11-02 17:47:58 +00:00
|
|
|
|
pythonPackages = python3Packages;
|
2018-06-23 14:27:58 +01:00
|
|
|
|
in pythonPackages.buildPythonApplication rec {
|
|
|
|
|
pname = "picard";
|
2018-11-02 17:47:58 +00:00
|
|
|
|
version = "2.0.4";
|
2012-09-05 00:15:23 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-10 00:21:41 +00:00
|
|
|
|
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
|
2018-11-02 17:47:58 +00:00
|
|
|
|
sha256 = "0ds3ylpqn717fnzcjrfn05v5xram01bj6n3hwn9igmkd1jgf8vhc";
|
2012-09-05 00:15:23 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-01-06 11:46:38 +00:00
|
|
|
|
buildInputs = [ gettext ];
|
2012-09-05 00:15:23 +01:00
|
|
|
|
|
2016-08-14 11:37:20 +01:00
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2018-11-02 17:47:58 +00:00
|
|
|
|
pyqt5
|
2014-10-29 17:45:56 +00:00
|
|
|
|
mutagen
|
2018-11-02 17:47:58 +00:00
|
|
|
|
chromaprint
|
2016-08-14 11:37:20 +01:00
|
|
|
|
discid
|
2012-09-05 00:15:23 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
|
'';
|
|
|
|
|
|
2018-11-02 17:47:58 +00:00
|
|
|
|
prePatch = ''
|
|
|
|
|
# Pesky unicode punctuation.
|
|
|
|
|
substituteInPlace setup.cfg --replace "‘" "'"
|
|
|
|
|
'';
|
|
|
|
|
|
2012-09-05 00:15:23 +01:00
|
|
|
|
doCheck = false;
|
|
|
|
|
|
2014-08-23 22:56:06 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
|
homepage = http://musicbrainz.org/doc/MusicBrainz_Picard;
|
2012-09-05 00:15:23 +01:00
|
|
|
|
description = "The official MusicBrainz tagger";
|
2015-12-05 21:41:25 +00:00
|
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 22:56:06 +01:00
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
platforms = platforms.all;
|
2012-09-05 00:15:23 +01:00
|
|
|
|
};
|
|
|
|
|
}
|