pyedbglib: init at 2.24.2.18

This commit is contained in:
prophetofxenu
2026-02-14 15:29:32 +00:00
committed by Gaetan Lepage
parent 1dedb59021
commit 23e1bfe1cd
2 changed files with 59 additions and 0 deletions
@@ -0,0 +1,57 @@
{
lib,
fetchFromGitHub,
buildPythonPackage,
# build-system
setuptools,
# dependencies
cython,
hidapi,
pyserial,
# tests
pytestCheckHook,
mock,
}:
buildPythonPackage {
pname = "pyedbglib";
version = "2.24.2.18";
pyproject = true;
src = fetchFromGitHub {
owner = "microchip-pic-avr-tools";
repo = "pyedbglib";
# the repo currently does not tag releases, so using the
# commit ID for now
rev = "9bbeceba942772ef31b9c059b761460a782313e";
hash = "sha256-iZB/+JEBy5n1zfajmJmEqRVQ2hPzJD/U85SvmyFiGhc=";
};
build-system = [
setuptools
];
dependencies = [
cython
hidapi
pyserial
];
pythonImportsCheck = [ "pyedbglib" ];
nativeCheckInputs = [
mock
pytestCheckHook
];
meta = {
description = "Low-level protocol library for communicating with Microchip CMSIS-DAP based debuggers";
homepage = "https://github.com/microchip-pic-avr-tools/pyedbglib";
changelog = "https://github.com/microchip-pic-avr-tools/pyedbglib/blob/main/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ prophetofxenu ];
};
}
+2
View File
@@ -13422,6 +13422,8 @@ self: super: with self; {
pyecowitt = callPackage ../development/python-modules/pyecowitt { };
pyedbglib = callPackage ../development/python-modules/pyedbglib { };
pyedflib = callPackage ../development/python-modules/pyedflib { };
pyedimax = callPackage ../development/python-modules/pyedimax { };