about summary refs log tree commit diff
path: root/pkgs/development/python-modules/py-desmume/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/py-desmume/default.nix')
-rw-r--r--pkgs/development/python-modules/py-desmume/default.nix41
1 files changed, 19 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/py-desmume/default.nix b/pkgs/development/python-modules/py-desmume/default.nix
index 6d63a7db9c8f0..311d4fdac0652 100644
--- a/pkgs/development/python-modules/py-desmume/default.nix
+++ b/pkgs/development/python-modules/py-desmume/default.nix
@@ -1,18 +1,19 @@
-{ lib
-, alsa-lib
-, buildPythonPackage
-, fetchFromGitHub
-, gitpython
-, libpcap
-, meson
-, ninja
-, openal
-, pillow
-, pkg-config
-, pygobject3
-, pythonOlder
-, SDL2
-, soundtouch
+{
+  lib,
+  alsa-lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  gitpython,
+  libpcap,
+  meson,
+  ninja,
+  openal,
+  pillow,
+  pkg-config,
+  pygobject3,
+  pythonOlder,
+  SDL2,
+  soundtouch,
 }:
 
 buildPythonPackage rec {
@@ -50,20 +51,16 @@ buildPythonPackage rec {
     pygobject3
   ];
 
-  hardeningDisable = [
-    "format"
-  ];
+  hardeningDisable = [ "format" ];
 
   doCheck = false; # there are no tests
 
-  pythonImportsCheck = [
-    "desmume"
-  ];
+  pythonImportsCheck = [ "desmume" ];
 
   meta = with lib; {
     description = "Python library to interface with DeSmuME, the Nintendo DS emulator";
     homepage = "https://github.com/SkyTemple/py-desmume";
     license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ marius851000 xfix ];
+    maintainers = with maintainers; [ marius851000 ];
   };
 }