nixos/wyoming/{faster-whisper,piper}: drop download directory (#376447)
[NixPkgs.git] / pkgs / by-name / dr / dr14_tmeter / package.nix
blobfe141c096fb185410438018d8b44b0965ecd05cc
2   lib,
3   fetchFromGitHub,
4   python3Packages,
5   pkgs,
6 }:
8 python3Packages.buildPythonApplication rec {
9   pname = "dr14_tmeter";
10   version = "1.0.16";
12   disabled = !python3Packages.isPy3k;
14   src = fetchFromGitHub {
15     owner = "simon-r";
16     repo = "dr14_t.meter";
17     rev = "v${version}";
18     sha256 = "1nfsasi7kx0myxkahbd7rz8796mcf5nsadrsjjpx2kgaaw5nkv1m";
19   };
21   propagatedBuildInputs = with pkgs; [
22     python3Packages.numpy
23     flac
24     vorbis-tools
25     ffmpeg
26     faad2
27     lame
28   ];
30   # There are no tests
31   doCheck = false;
33   meta = with lib; {
34     description = "Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation";
35     mainProgram = "dr14_tmeter";
36     license = licenses.gpl3Plus;
37     homepage = "http://dr14tmeter.sourceforge.net/";
38     maintainers = [ ];
39   };