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

35 lines
851 B
Nix
Raw Normal View History

2020-08-29 23:49:32 +00:00
{ stdenv, fetchFromGitHub, python3Packages, chromaprint }:
2020-08-29 23:49:32 +00:00
python3Packages.buildPythonApplication rec {
pname = "puddletag";
2020-08-29 23:49:32 +00:00
version = "2.0.1";
src = fetchFromGitHub {
2020-08-29 23:49:32 +00:00
owner = "keithgg";
repo = "puddletag";
rev = version;
sha256 = "sha256-9l8Pc77MX5zFkOqU00HFS8//3Bzd2OMnVV1brmWsNAQ=";
};
2020-08-29 23:49:32 +00:00
sourceRoot = "source/source";
2020-08-29 23:49:32 +00:00
propagatedBuildInputs = [ chromaprint ] ++ (with python3Packages; [
configobj
mutagen
pyparsing
2020-08-29 23:49:32 +00:00
pyqt5
2016-10-20 04:07:51 +00:00
]);
doCheck = false; # there are no tests
2020-08-29 23:49:32 +00:00
dontStrip = true; # we are not generating any binaries
meta = with stdenv.lib; {
description = "An audio tag editor similar to the Windows program, Mp3tag";
2020-08-29 23:49:32 +00:00
homepage = "https://docs.puddletag.net";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
2020-08-29 23:49:32 +00:00
platforms = platforms.linux;
};
}