python3Packages.la-panic: init at 0.5.0

This commit is contained in:
Robert Schütz
2025-10-14 17:37:34 -07:00
parent 7e40f18735
commit 5a361fb495
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{
buildPythonPackage,
cached-property,
click,
coloredlogs,
fetchFromGitLab,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "la-panic";
version = "0.5.0";
pyproject = true;
src = fetchFromGitLab {
owner = "yanivhasbanidev";
repo = "la_panic";
tag = version;
hash = "sha256-V9VUSp5uvj4jR3oVHdRjvnNDGB1a5bi8elu/ry4jq00=";
};
build-system = [ setuptools ];
dependencies = [
cached-property
click
coloredlogs
];
pythonImportsCheck = [ "la_panic" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://gitlab.com/yanivhasbanidev/la_panic/-/tags/${src.tag}";
description = "AppleOS Kernel Panic Parser";
homepage = "https://gitlab.com/yanivhasbanidev/la_panic";
license = lib.licenses.gpl3Plus;
mainProgram = "la_panic";
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -7954,6 +7954,8 @@ self: super: with self; {
l18n = callPackage ../development/python-modules/l18n { };
la-panic = callPackage ../development/python-modules/la-panic { };
labelbox = callPackage ../development/python-modules/labelbox { };
labgrid = callPackage ../development/python-modules/labgrid { };