Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, pkg-config, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "freertos-gdb"; 5 version = "1.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-5rkB01OdbD5Z4vA6dbqhWp5pGwqI1IlE4IE1dSdT1QE="; 10 }; 11 12 # Project has no tests 13 doCheck = false; 14 15 meta = with lib; { 16 description = "User-friendly view of FreeRTOS kernel objects in GDB"; 17 homepage = "https://github.com/espressif/freertos-gdb"; 18 license = licenses.asl20; 19 maintainers = with maintainers; [ 20 danc86 21 ]; 22 }; 23}