Skip to content

Commit

Permalink
ffpb: init at 0.4.1 (#288955)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 15, 2024
2 parents ac9bd51 + 93a5aeb commit 67f5b45
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/by-name/ff/ffpb/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
lib,
python3Packages,
fetchPypi,
}:

python3Packages.buildPythonApplication rec {
pname = "ffpb";
version = "0.4.1";
pyproject = true;

src = fetchPypi {
inherit pname version;
sha256 = "7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk=";
};

build-system = [ python3Packages.setuptools ];

dependencies = [ python3Packages.tqdm ];

# tests require working internet connection
doCheck = false;

meta = {
description = "FFmpeg progress formatter to display a nice progress bar and an adaptative ETA timer";
homepage = "https://github.com/althonos/ffpb";
changelog = "https://github.com/althonos/ffpb/blob/master/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ CaptainJawZ ];
mainProgram = "ffpb";
};
}

0 comments on commit 67f5b45

Please sign in to comment.