2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitHub, python3Packages, pkgs }:
|
2017-07-03 19:23:18 +02:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-06-23 15:27:58 +02:00
|
|
|
pname = "dr14_tmeter";
|
2017-07-03 19:23:18 +02:00
|
|
|
version = "1.0.16";
|
|
|
|
|
|
|
|
disabled = !python3Packages.isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "simon-r";
|
|
|
|
repo = "dr14_t.meter";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1nfsasi7kx0myxkahbd7rz8796mcf5nsadrsjjpx2kgaaw5nkv1m";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pkgs; [
|
2021-06-01 17:27:24 +02:00
|
|
|
python3Packages.numpy flac vorbis-tools ffmpeg faad2 lame
|
2017-07-03 19:23:18 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-07-03 19:23:18 +02:00
|
|
|
description = "Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://dr14tmeter.sourceforge.net/";
|
2017-07-03 19:23:18 +02:00
|
|
|
maintainers = [ maintainers.adisbladis ];
|
|
|
|
};
|
|
|
|
}
|