nixpkgs/pkgs/applications/audio/picard/default.nix

43 lines
1016 B
Nix
Raw Normal View History

{ stdenv, python3Packages, fetchFromGitHub, gettext, chromaprint, qt5 }:
2016-08-14 11:37:20 +01:00
let
pythonPackages = python3Packages;
in pythonPackages.buildPythonApplication rec {
pname = "picard";
2019-09-24 16:08:00 +01:00
version = "2.2.1";
2019-01-31 18:58:26 +00:00
src = fetchFromGitHub {
owner = "metabrainz";
repo = pname;
rev = "release-${version}";
2019-09-24 16:08:00 +01:00
sha256 = "1g7pbicf65hswbqmhrwlba9jm4r2vnggy7vy75z4256y7qcpwdfd";
};
nativeBuildInputs = [ gettext qt5.wrapQtAppsHook qt5.qtbase ];
2016-08-14 11:37:20 +01:00
propagatedBuildInputs = with pythonPackages; [
pyqt5
2014-10-29 17:45:56 +00:00
mutagen
chromaprint
2016-08-14 11:37:20 +01:00
discid
];
prePatch = ''
# Pesky unicode punctuation.
substituteInPlace setup.cfg --replace "" "'"
'';
installPhase = ''
python setup.py install --prefix="$out"
wrapQtApp $out/bin/picard
'';
meta = with stdenv.lib; {
homepage = http://musicbrainz.org/doc/MusicBrainz_Picard;
description = "The official MusicBrainz tagger";
maintainers = with maintainers; [ ehmry ];
license = licenses.gpl2;
platforms = platforms.all;
};
}