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 Feb 15, 2024
1 parent e4dbabf commit f15b60b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/ffpb/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, tqdm }:

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

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

propagatedBuildInputs = [ tqdm ];

# tests require working internet connection
doCheck = false;

meta = with lib; {
description =
"ffpb is an FFmpeg progress formatter. It will attempt to display a nice progress bar in the output, based on the raw ffmpeg output, as well as an adaptative ETA timer.";
homepage = "https://github.com/althonos/ffpb";
license = licenses.mit;
maintainers = with maintainers; [ CaptainJawZ ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21119,6 +21119,8 @@ with pkgs;

ffms = callPackage ../development/libraries/ffms { };

ffpb = with python3Packages; toPythonApplication ffpb;

fftw = callPackage ../development/libraries/fftw { };
fftwSinglePrec = fftw.override { precision = "single"; };
fftwFloat = fftwSinglePrec; # the configure option is just an alias
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4025,6 +4025,8 @@ self: super: with self; {

ffmpy = callPackage ../development/python-modules/ffmpy { };

ffpb = callPackage ../development/python-modules/ffpb { };

fhir-py = callPackage ../development/python-modules/fhir-py { };

fiblary3-fork = callPackage ../development/python-modules/fiblary3-fork { };
Expand Down

0 comments on commit f15b60b

Please sign in to comment.