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:
parent
4a900b9fb0
commit
8611a6c2c1
51
pkgs/development/python-modules/lingva/default.nix
Normal file
51
pkgs/development/python-modules/lingva/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue