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

38 lines
971 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, python2Packages, chromaprint }:
python2Packages.buildPythonApplication rec {
pname = "puddletag";
2016-11-29 02:57:52 +00:00
version = "1.2.0";
src = fetchFromGitHub {
owner = "keithgg";
repo = "puddletag";
rev = "v${version}";
2016-11-29 02:57:52 +00:00
sha256 = "1g6wa91awy17z5b704yi9kfynnvfm9lkrvpfvwccscr1h8s3qmiz";
};
setSourceRoot = ''
sourceRoot=$(echo */source)
'';
2017-01-02 15:19:59 +00:00
disabled = python2Packages.isPy3k; # work to support python 3 has not begun
2017-01-02 15:19:59 +00:00
propagatedBuildInputs = [ chromaprint ] ++ (with python2Packages; [
configobj
mutagen
pyparsing
pyqt4
2016-10-20 04:07:51 +00:00
]);
doCheck = false; # there are no tests
dontStrip = true; # we are not generating any binaries
meta = with stdenv.lib; {
homepage = https://puddletag.net;
description = "An audio tag editor similar to the Windows program, Mp3tag";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}