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

37 lines
862 B
Nix
Raw Normal View History

2017-01-06 11:46:38 +00:00
{ stdenv, python2Packages, fetchurl, gettext, chromaprint }:
2016-08-14 10:37:20 +00:00
let
2017-02-14 15:08:51 +00:00
version = "1.4";
2016-10-17 19:51:31 +00:00
pythonPackages = python2Packages;
2016-08-14 10:37:20 +00:00
in pythonPackages.buildPythonApplication {
name = "picard-${version}";
namePrefix = "";
src = fetchurl {
2015-02-10 00:21:41 +00:00
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
2017-02-14 15:08:51 +00:00
sha256 = "0gi7f1h7jcg7n18cx8iw38sd868viv3w377xmi7cq98f1g76d4h6";
};
2017-01-06 11:46:38 +00:00
buildInputs = [ gettext ];
2016-08-14 10:37:20 +00:00
propagatedBuildInputs = with pythonPackages; [
pyqt4
2014-10-29 17:45:56 +00:00
mutagen
2016-08-14 10:37:20 +00:00
discid
];
installPhase = ''
python setup.py install --prefix="$out"
'';
doCheck = false;
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;
};
}