1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "freertos-gdb";
10 version = "1.0.4";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-lH/dlTX2PuZ89rX5zzpedHkqHvdVy+h6BzJ8rVFmkb8=";
16 };
17
18 build-system = [
19 setuptools
20 ];
21
22 # Project has no tests
23 doCheck = false;
24
25 meta = with lib; {
26 description = "User-friendly view of FreeRTOS kernel objects in GDB";
27 homepage = "https://github.com/espressif/freertos-gdb";
28 license = licenses.asl20;
29 maintainers = with maintainers; [
30 danc86
31 ];
32 };
33}