hyperglot: init at 0.7.3 (#444808)

This commit is contained in:
Sandro
2025-10-23 21:08:57 +00:00
committed by GitHub
4 changed files with 55 additions and 0 deletions
+6
View File
@@ -10956,6 +10956,12 @@
githubId = 993484;
name = "Greg Hale";
};
imatpot = {
email = "nixpkgs@brnk.vc";
github = "imatpot";
githubId = 39416660;
name = "Mladen Branković";
};
imgabe = {
email = "gabrielpmonte@hotmail.com";
github = "ImGabe";
@@ -0,0 +1,45 @@
{
lib,
nix-update-script,
fetchPypi,
buildPythonApplication,
setuptools,
click,
fonttools,
uharfbuzz,
pyyaml,
colorlog,
}:
buildPythonApplication rec {
pname = "hyperglot";
version = "0.7.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Pd9Yxmv9a1T2xV03q2U1m1laHE3WifHwmnGBfTTCSxM=";
};
dependencies = [
click
fonttools
uharfbuzz
pyyaml
colorlog
];
build-system = [ setuptools ];
pythonImportsCheck = [ "hyperglot" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Database and tools for detecting language support in fonts";
homepage = "https://hyperglot.rosettatype.com";
changelog = "https://github.com/rosettatype/hyperglot/blob/${version}/CHANGELOG.md";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ imatpot ];
mainProgram = "hyperglot";
};
}
+2
View File
@@ -11343,6 +11343,8 @@ with pkgs;
hyperion-ng = libsForQt5.callPackage ../applications/video/hyperion-ng { };
hyperglot = with python3Packages; toPythonApplication hyperglot;
jackline = callPackage ../applications/networking/instant-messengers/jackline {
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
};
+2
View File
@@ -6884,6 +6884,8 @@ self: super: with self; {
hyperframe = callPackage ../development/python-modules/hyperframe { };
hyperglot = callPackage ../development/python-modules/hyperglot { };
hyperion-py = callPackage ../development/python-modules/hyperion-py { };
hyperlink = callPackage ../development/python-modules/hyperlink { };