python310Packages.argos-translate-files: init at 1.1.3

This commit is contained in:
misuzu 2023-04-27 19:14:29 +03:00
parent 1f14c223ac
commit 44733abecd
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, lxml
, translatehtml
}:
buildPythonPackage rec {
pname = "argos-translate-files";
version = "1.1.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "c6931ea8fbabdc24903ceaabfe848be0fa4a0477d00451a8dfbc1525b623f0ba";
};
propagatedBuildInputs = [
lxml
translatehtml
];
postPatch = ''
ln -s */requires.txt requirements.txt
'';
# required for import check to work (argostranslate)
env.HOME = "/tmp";
pythonImportsCheck = [ "argostranslatefiles" ];
doCheck = false; # no tests
meta = with lib; {
description = "Translate files using Argos Translate";
homepage = "https://www.argosopentech.com";
license = licenses.mit;
maintainers = with maintainers; [ misuzu ];
};
}

View File

@ -614,6 +614,8 @@ self: super: with self; {
ctranslate2-cpp = pkgs.ctranslate2;
};
argos-translate-files = callPackage ../development/python-modules/argos-translate-files { };
argparse-addons = callPackage ../development/python-modules/argparse-addons { };
argparse-dataclass = callPackage ../development/python-modules/argparse-dataclass { };