2019-08-09 14:37:35 +02:00
|
|
|
|
{ stdenv, python3Packages, fetchFromGitHub, gettext, chromaprint, qt5 }:
|
2012-09-05 01:15:23 +02:00
|
|
|
|
|
2016-08-14 12:37:20 +02:00
|
|
|
|
let
|
2018-11-02 18:47:58 +01:00
|
|
|
|
pythonPackages = python3Packages;
|
2018-06-23 15:27:58 +02:00
|
|
|
|
in pythonPackages.buildPythonApplication rec {
|
|
|
|
|
pname = "picard";
|
2019-11-28 22:25:17 +01:00
|
|
|
|
version = "2.2.3";
|
2012-09-05 01:15:23 +02:00
|
|
|
|
|
2019-01-31 19:58:26 +01:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "metabrainz";
|
|
|
|
|
repo = pname;
|
|
|
|
|
rev = "release-${version}";
|
2019-11-28 22:25:17 +01:00
|
|
|
|
sha256 = "0lb4pzl03mr5hrzrzva99rxqd5yfip62b7sjmlg4j0imw8mxaj16";
|
2012-09-05 01:15:23 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-08-09 14:37:35 +02:00
|
|
|
|
nativeBuildInputs = [ gettext qt5.wrapQtAppsHook qt5.qtbase ];
|
2012-09-05 01:15:23 +02:00
|
|
|
|
|
2016-08-14 12:37:20 +02:00
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2018-11-02 18:47:58 +01:00
|
|
|
|
pyqt5
|
2014-10-29 18:45:56 +01:00
|
|
|
|
mutagen
|
2018-11-02 18:47:58 +01:00
|
|
|
|
chromaprint
|
2016-08-14 12:37:20 +02:00
|
|
|
|
discid
|
2012-09-05 01:15:23 +02:00
|
|
|
|
];
|
|
|
|
|
|
2018-11-02 18:47:58 +01:00
|
|
|
|
prePatch = ''
|
|
|
|
|
# Pesky unicode punctuation.
|
|
|
|
|
substituteInPlace setup.cfg --replace "‘" "'"
|
|
|
|
|
'';
|
|
|
|
|
|
2019-08-09 14:37:35 +02:00
|
|
|
|
installPhase = ''
|
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
|
wrapQtApp $out/bin/picard
|
|
|
|
|
'';
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
}
|