1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

python311Packages.lingva: init at 5.0.2

Module with tools to extract translatable texts from your code

https://github.com/vacanza/lingva
This commit is contained in:
Fabian Affolter 2024-04-03 17:21:07 +02:00
parent 4a900b9fb0
commit 8611a6c2c1
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,51 @@
{ lib
, buildPythonPackage
, chameleon
, click
, fetchFromGitHub
, polib
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "lingva";
version = "5.0.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "vacanza";
repo = "lingva";
rev = "refs/tags/v${version}";
hash = "sha256-kr64L/DtEWZu9z2p90QJHnb/6LygwZgxE+rARbo0NYI=";
};
build-system = [
setuptools
];
dependencies = [
chameleon
click
polib
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"lingva"
];
meta = with lib; {
description = "Module with tools to extract translatable texts from your code";
homepage = "https://github.com/vacanza/lingva";
changelog = "https://github.com/vacanza/lingva/blob/${version}/changes.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6737,6 +6737,8 @@ self: super: with self; {
lingua = callPackage ../development/python-modules/lingua { };
lingva = callPackage ../development/python-modules/lingva { };
linien-client = callPackage ../development/python-modules/linien-client { };
linien-common = callPackage ../development/python-modules/linien-common { };