summary refs log blame commit diff
path: root/pkgs/applications/audio/puddletag/default.nix
blob: efa1d943610070d08ff960155da4a04d6d1b2876 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                       
 
                                            
                      
                    

                         



                                                                   

    
                               
 

                                         
                                                                     


             
         
     
 




                                              
 
                                                        
 
                    
                                                                               

                                            
                                                  
                                

    
{ 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;
  };
}