mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
fc8db92812
Diff: https://github.com/vacanza/lingva/compare/refs/tags/v5.0.3...v5.0.4 Changelog: https://github.com/vacanza/lingva/blob/5.0.4/changes.rst
47 lines
924 B
Nix
47 lines
924 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
chameleon,
|
|
click,
|
|
fetchFromGitHub,
|
|
polib,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lingva";
|
|
version = "5.0.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vacanza";
|
|
repo = "lingva";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-2h3J+pvXRmjD7noMA7Cyu5Tf/9R8Akv08A7xJMLVD08=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|