mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
ffmpeg-normalize: 1.28.3 -> 1.31.3
This commit is contained in:
parent
2b70f37c3a
commit
12a4a89433
1 changed files with 16 additions and 8 deletions
|
@ -4,23 +4,31 @@
|
|||
fetchPypi,
|
||||
ffmpeg,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "ffmpeg-normalize";
|
||||
version = "1.28.3";
|
||||
version = "1.31.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-8wNPuVRQRQpFK6opgwqdKYMYmAFRqq8p/T5V9kC8QaY=";
|
||||
inherit version;
|
||||
pname = "ffmpeg_normalize";
|
||||
hash = "sha256-sewDSBUX6gCZSIHeRtpx5fQGtOKN8OWZKrtCF2bgI9Y=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ffmpeg
|
||||
python3Packages.ffmpeg-progress-yield
|
||||
];
|
||||
dependencies = with python3Packages; [ colorlog ];
|
||||
dependencies =
|
||||
with python3Packages;
|
||||
[
|
||||
colorlog
|
||||
ffmpeg-progress-yield
|
||||
]
|
||||
++ [ ffmpeg ];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
$out/bin/ffmpeg-normalize --help > /dev/null
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue