2019-01-31 10:58:26 -08:00
|
|
|
|
{ stdenv, python3Packages, fetchFromGitHub, gettext, chromaprint }:
|
2012-09-04 16:15:23 -07:00
|
|
|
|
|
2016-08-14 03:37:20 -07:00
|
|
|
|
let
|
2018-11-02 10:47:58 -07:00
|
|
|
|
pythonPackages = python3Packages;
|
2018-06-23 06:27:58 -07:00
|
|
|
|
in pythonPackages.buildPythonApplication rec {
|
|
|
|
|
pname = "picard";
|
2019-01-31 10:58:26 -08:00
|
|
|
|
version = "2.1.2";
|
2012-09-04 16:15:23 -07:00
|
|
|
|
|
2019-01-31 10:58:26 -08:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "metabrainz";
|
|
|
|
|
repo = pname;
|
|
|
|
|
rev = "release-${version}";
|
|
|
|
|
sha256 = "1p2bvfzby0nk1vh04yfmsvjcldgkj6m6s1hcv9v13hc8q1cbdfk5";
|
2012-09-04 16:15:23 -07:00
|
|
|
|
};
|
|
|
|
|
|
2017-01-06 03:46:38 -08:00
|
|
|
|
buildInputs = [ gettext ];
|
2012-09-04 16:15:23 -07:00
|
|
|
|
|
2016-08-14 03:37:20 -07:00
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2018-11-02 10:47:58 -07:00
|
|
|
|
pyqt5
|
2014-10-29 10:45:56 -07:00
|
|
|
|
mutagen
|
2018-11-02 10:47:58 -07:00
|
|
|
|
chromaprint
|
2016-08-14 03:37:20 -07:00
|
|
|
|
discid
|
2012-09-04 16:15:23 -07:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
|
'';
|
|
|
|
|
|
2018-11-02 10:47:58 -07:00
|
|
|
|
prePatch = ''
|
|
|
|
|
# Pesky unicode punctuation.
|
|
|
|
|
substituteInPlace setup.cfg --replace "‘" "'"
|
|
|
|
|
'';
|
|
|
|
|
|
2014-08-23 14:56:06 -07:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 13:03:30 -07:00
|
|
|
|
homepage = http://musicbrainz.org/doc/MusicBrainz_Picard;
|
2012-09-04 16:15:23 -07:00
|
|
|
|
description = "The official MusicBrainz tagger";
|
2015-12-05 13:41:25 -08:00
|
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 14:56:06 -07:00
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
platforms = platforms.all;
|
2012-09-04 16:15:23 -07:00
|
|
|
|
};
|
|
|
|
|
}
|