Merge pull request #96645 from NixOS/u/puddletag

puddletag: 1.2.0 -> 2.0.1

authored by Peter Hoeg and committed by GitHub d761d68c 1b018692

+14 -17
+14 -17
pkgs/applications/audio/puddletag/default.nix
··· 1 - { stdenv, fetchFromGitHub, python2Packages, chromaprint }: 2 3 - python2Packages.buildPythonApplication rec { 4 pname = "puddletag"; 5 - version = "1.2.0"; 6 7 src = fetchFromGitHub { 8 - owner = "keithgg"; 9 - repo = "puddletag"; 10 - rev = "v${version}"; 11 - sha256 = "1g6wa91awy17z5b704yi9kfynnvfm9lkrvpfvwccscr1h8s3qmiz"; 12 }; 13 14 - setSourceRoot = '' 15 - sourceRoot=$(echo */source) 16 - ''; 17 - 18 - disabled = python2Packages.isPy3k; # work to support python 3 has not begun 19 20 - propagatedBuildInputs = [ chromaprint ] ++ (with python2Packages; [ 21 configobj 22 mutagen 23 pyparsing 24 - pyqt4 25 ]); 26 27 doCheck = false; # there are no tests 28 dontStrip = true; # we are not generating any binaries 29 30 meta = with stdenv.lib; { 31 description = "An audio tag editor similar to the Windows program, Mp3tag"; 32 - homepage = "https://docs.puddletag.net"; 33 - license = licenses.gpl3; 34 maintainers = with maintainers; [ peterhoeg ]; 35 - platforms = platforms.linux; 36 }; 37 }
··· 1 + { stdenv, fetchFromGitHub, python3Packages, chromaprint }: 2 3 + python3Packages.buildPythonApplication rec { 4 pname = "puddletag"; 5 + version = "2.0.1"; 6 7 src = fetchFromGitHub { 8 + owner = "keithgg"; 9 + repo = "puddletag"; 10 + rev = version; 11 + sha256 = "sha256-9l8Pc77MX5zFkOqU00HFS8//3Bzd2OMnVV1brmWsNAQ="; 12 }; 13 14 + sourceRoot = "source/source"; 15 16 + propagatedBuildInputs = [ chromaprint ] ++ (with python3Packages; [ 17 configobj 18 mutagen 19 pyparsing 20 + pyqt5 21 ]); 22 23 doCheck = false; # there are no tests 24 + 25 dontStrip = true; # we are not generating any binaries 26 27 meta = with stdenv.lib; { 28 description = "An audio tag editor similar to the Windows program, Mp3tag"; 29 + homepage = "https://docs.puddletag.net"; 30 + license = licenses.gpl3; 31 maintainers = with maintainers; [ peterhoeg ]; 32 + platforms = platforms.linux; 33 }; 34 }