19 buildPythonPackage rec {
22 format = "setuptools";
24 disabled = pythonOlder "3.7";
26 src = fetchFromGitHub {
29 rev = "refs/tags/${version}";
30 hash = "sha256-aH7f/BI89VLUGqwA8Y7ThSpmKxWffYRETT/+EjPVTg8=";
31 fetchSubmodules = true;
49 propagatedBuildInputs = [
54 hardeningDisable = [ "format" ];
56 doCheck = false; # there are no tests
58 pythonImportsCheck = [ "desmume" ];
61 description = "Python library to interface with DeSmuME, the Nintendo DS emulator";
62 homepage = "https://github.com/SkyTemple/py-desmume";
63 license = licenses.gpl3Plus;
64 maintainers = with maintainers; [ marius851000 ];