python3Packages.licomp-gnuguide: init at 0.5.2

Assisted-By: nix-init
This commit is contained in:
eljamm
2026-06-09 18:18:20 +02:00
parent 88eebbf394
commit 163895d92b
2 changed files with 60 additions and 0 deletions
@@ -0,0 +1,58 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
licomp,
# tests
pytestCheckHook,
jsonschema,
}:
buildPythonPackage (finalAttrs: {
pname = "licomp-gnuguide";
version = "0.5.2";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "hesa";
repo = "licomp-gnuguide";
tag = finalAttrs.version;
hash = "sha256-DfjrmEktlTFvKqHIlmM/XeWZ4s24cRtWqs65OLDYZNQ=";
};
build-system = [
setuptools
];
dependencies = [
licomp
];
nativeCheckInputs = [
pytestCheckHook
jsonschema
];
pythonImportsCheck = [
"licomp_gnuguide"
];
meta = {
description = "Implementation of Licomp using GNU resources";
homepage = "https://github.com/hesa/licomp-gnuguide";
changelog = "https://github.com/hesa/licomp-gnuguide/releases/tag/${finalAttrs.src.tag}";
license = with lib.licenses; [
cc-by-nd-40 # licomp-gnuguide.png & licomp_gnuguide/data/gnu-quick-guide-licenses.json
gpl3Plus
];
maintainers = with lib.maintainers; [ eljamm ];
teams = with lib.teams; [ ngi ];
};
})
+2
View File
@@ -9065,6 +9065,8 @@ self: super: with self; {
licomp-dwheeler = callPackage ../development/python-modules/licomp-dwheeler { };
licomp-gnuguide = callPackage ../development/python-modules/licomp-gnuguide { };
lida = callPackage ../development/python-modules/lida { };
lief = (toPythonModule (pkgs.lief.override { python3 = python; })).py;