-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters