summary refs log tree commit diff
path: root/pkgs/applications/audio/puddletag/default.nix
blob: efa1d943610070d08ff960155da4a04d6d1b2876 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook, chromaprint }:

python3Packages.buildPythonApplication rec {
  pname = "puddletag";
  version = "2.0.1";

  src = fetchFromGitHub {
    owner = "keithgg";
    repo = "puddletag";
    rev = version;
    sha256 = "sha256-9l8Pc77MX5zFkOqU00HFS8//3Bzd2OMnVV1brmWsNAQ=";
  };

  sourceRoot = "source/source";

  nativeBuildInputs = [ wrapQtAppsHook ];

  propagatedBuildInputs = [ chromaprint ] ++ (with python3Packages; [
    configobj
    mutagen
    pyparsing
    pyqt5
  ]);

  preFixup = ''
    makeWrapperArgs+=("''${qtWrapperArgs[@]}")
  '';

  doCheck = false; # there are no tests

  dontStrip = true; # we are not generating any binaries

  meta = with lib; {
    description = "An audio tag editor similar to the Windows program, Mp3tag";
    homepage = "https://docs.puddletag.net";
    license = licenses.gpl3;
    maintainers = with maintainers; [ peterhoeg ];
    platforms = platforms.linux;
  };
}