8 buildPythonPackage rec {
12 src = fetchFromGitHub {
16 sha256 = "0a6b3zyxwdcb671c6lrwxm8fhvsbjh0m8hf1r18m9dha86laimjr";
19 checkInputs = [ gdb ];
21 # tests require gcc for some reason
22 doCheck = !stdenv.hostPlatform.isDarwin;
25 # tries to execute flake8,
26 # which is likely to break on flake8 updates
27 echo "def main(): return 0" > tests/static_tests.py
31 description = "Parse gdb machine interface output with Python";
32 homepage = "https://github.com/cs01/pygdbmi";
33 license = licenses.mit;
34 maintainers = [ maintainers.mic92 ];