about summary refs log tree commit diff
path: root/pkgs/development/python-modules/freertos-gdb/default.nix
blob: cb240cec4807e02e3eb8b07e5ab6ab8fe991435b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, pkg-config, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "freertos-gdb";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-o0ZoTy7OLVnrhSepya+MwaILgJSojs2hfmI86D9C3cs=";
  };

  # Project has no tests
  doCheck = false;

  meta = with lib; {
    description = "User-friendly view of FreeRTOS kernel objects in GDB";
    homepage = "https://github.com/espressif/freertos-gdb";
    license = licenses.asl20;
    maintainers = with maintainers; [
      danc86
    ];
  };
}