python3Packages.pygdbmi: fix build, missing dependency

This commit is contained in:
Vladimír Čunát
2023-03-09 19:53:41 +01:00
parent 1861620795
commit f47be50f2f
@@ -3,6 +3,7 @@
, buildPythonPackage
, fetchFromGitHub
, gdb
, pytest
}:
buildPythonPackage rec {
@@ -16,7 +17,7 @@ buildPythonPackage rec {
hash = "sha256-JqEDN8Pg/JttyYQbwkxKkLYuxVnvV45VlClD23eaYyc=";
};
nativeCheckInputs = [ gdb ];
nativeCheckInputs = [ gdb pytest ];
# tests require gcc for some reason
doCheck = !stdenv.hostPlatform.isDarwin;