Skip to content

Commit

Permalink
ffpb: init at 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainJawZ committed Oct 30, 2024
1 parent 9682b21 commit fbdffa4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/ff/ffpb/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
python3Packages,
fetchPypi,
}:

python3Packages.buildPythonPackage rec {
pname = "ffpb";
version = "0.4.1";
format = "setuptools";

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

propagatedBuildInputs = [ 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";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ CaptainJawZ ];
};
}

0 comments on commit fbdffa4

Please sign in to comment.