Skip to content

Commit

Permalink
pgsrip: init at 0.1.11 (#316209)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Dec 22, 2024
2 parents f6f9b2f + bdefb92 commit 088f445
Show file tree
Hide file tree
Showing 5 changed files with 185 additions and 0 deletions.
51 changes: 51 additions & 0 deletions pkgs/by-name/pg/pgsrip/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
lib,
python3Packages,
fetchFromGitHub,
nix-update-script,
}:

python3Packages.buildPythonApplication rec {
pname = "pgsrip";
version = "0.1.11";
pyproject = true;

disabled = python3Packages.pythonOlder "3.9";

src = fetchFromGitHub {
owner = "ratoaq2";
repo = "pgsrip";
rev = version;
hash = "sha256-H9gZXge+m/bCq25Fv91oFZ8Cq2SRNrKhOaDrLZkjazg=";
};

build-system = [ python3Packages.poetry-core ];

dependencies = with python3Packages; [
babelfish
cleanit
click
numpy
opencv-python
pysrt
pytesseract
setuptools
trakit
];

pythonRelaxDeps = [
"numpy"
"setuptools"
];

passthru.updateScript = nix-update-script { };

meta = {
description = "Rip your PGS subtitles";
homepage = "https://github.com/ratoaq2/pgsrip";
changelog = "https://github.com/ratoaq2/pgsrip/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eljamm ];
mainProgram = "pgsrip";
};
}
64 changes: 64 additions & 0 deletions pkgs/development/python-modules/cleanit/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
nix-update-script,

# build dependencies
poetry-core,

# dependencies
appdirs,
babelfish,
chardet,
click,
jsonschema,
pysrt,
pyyaml,

# tests
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "cleanit";
version = "0.4.8";
pyproject = true;

disabled = pythonOlder "3.9";

src = fetchFromGitHub {
owner = "ratoaq2";
repo = "cleanit";
rev = version;
hash = "sha256-z1QAWWm+yg/pRCQfPqGbL0EFFT9UwqIkwhmjUuRHyuk=";
};

build-system = [ poetry-core ];

dependencies = [
appdirs
babelfish
chardet
click
jsonschema
pysrt
pyyaml
];

nativeCheckInputs = [ pytestCheckHook ];

pythonImportsCheck = [ "cleanit" ];

passthru.updateScript = nix-update-script { };

meta = {
description = "Command line tool that helps you to keep your subtitles clean";
homepage = "https://github.com/ratoaq2/cleanit";
changelog = "https://github.com/ratoaq2/cleanit/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ eljamm ];
mainProgram = "cleanit";
};
}
64 changes: 64 additions & 0 deletions pkgs/development/python-modules/trakit/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
nix-update-script,

# build dependencies
poetry-core,

# dependencies
babelfish,
pyyaml,
rebulk,
unidecode,

# tests
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "trakit";
version = "0.2.2";
pyproject = true;

disabled = pythonOlder "3.9";

src = fetchFromGitHub {
owner = "ratoaq2";
repo = "trakit";
rev = version;
hash = "sha256-VV+pdsQ5WEALYZgu4AmvNce1rCTLSYPZtTMjh+aExsU=";
};

build-system = [ poetry-core ];

dependencies = [
babelfish
pyyaml
rebulk
];

nativeCheckInputs = [
pytestCheckHook
unidecode
];

disabledTests = [
# requires network access
"test_generate_config"
];

pythonImportsCheck = [ "trakit" ];

passthru.updateScript = nix-update-script { };

meta = {
description = "Guess additional information from track titles";
homepage = "https://github.com/ratoaq2/trakit";
changelog = "https://github.com/ratoaq2/trakit/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eljamm ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2127,6 +2127,8 @@ with pkgs;

clevercsv = with python3Packages; toPythonApplication clevercsv;

cleanit = with python3Packages; toPythonApplication cleanit;

clickgen = with python3Packages; toPythonApplication clickgen;

cloud-init = python3.pkgs.callPackage ../tools/virtualization/cloud-init { inherit systemd; };
Expand Down
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2336,6 +2336,8 @@ self: super: with self; {

clean-fid = callPackage ../development/python-modules/clean-fid { };

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

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

cleanvision = callPackage ../development/python-modules/cleanvision { };
Expand Down Expand Up @@ -16308,6 +16310,8 @@ self: super: with self; {

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

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

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

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

0 comments on commit 088f445

Please sign in to comment.