3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/picard/default.nix

42 lines
961 B
Nix
Raw Normal View History

{ stdenv, python3Packages, fetchurl, gettext, chromaprint }:
2016-08-14 11:37:20 +01:00
let
pythonPackages = python3Packages;
in pythonPackages.buildPythonApplication rec {
pname = "picard";
version = "2.1";
src = fetchurl {
2015-02-10 00:21:41 +00:00
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
sha256 = "054a37q5828q59jzml4npkyczsp891d89kawgsif9kwpi0dxa06c";
};
2017-01-06 11:46:38 +00:00
buildInputs = [ 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 "" "'"
'';
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;
};
}