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

42 lines
951 B
Nix
Raw Normal View History

2019-01-31 18:58:26 +00:00
{ stdenv, python3Packages, fetchFromGitHub, gettext, chromaprint }:
2016-08-14 11:37:20 +01:00
let
pythonPackages = python3Packages;
in pythonPackages.buildPythonApplication rec {
pname = "picard";
2019-01-31 18:58:26 +00:00
version = "2.1.2";
2019-01-31 18:58:26 +00:00
src = fetchFromGitHub {
owner = "metabrainz";
repo = pname;
rev = "release-${version}";
sha256 = "1p2bvfzby0nk1vh04yfmsvjcldgkj6m6s1hcv9v13hc8q1cbdfk5";
};
nativeBuildInputs = [ gettext ];
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
];
installPhase = ''
python setup.py install --prefix="$out"
'';
prePatch = ''
# Pesky unicode punctuation.
substituteInPlace setup.cfg --replace "" "'"
'';
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;
};
}