about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fleep/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/fleep/default.nix')
-rw-r--r--pkgs/development/python-modules/fleep/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/fleep/default.nix b/pkgs/development/python-modules/fleep/default.nix
index f41cb0109402..4f178a836c22 100644
--- a/pkgs/development/python-modules/fleep/default.nix
+++ b/pkgs/development/python-modules/fleep/default.nix
@@ -1,7 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, python
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  python,
 }:
 
 buildPythonPackage rec {
@@ -17,9 +18,7 @@ buildPythonPackage rec {
     hash = "sha256-TaU7njx98nxkhZawGMFqWj4g+yCtIX9aPWQHoamzfMY=";
   };
 
-  patches = [
-    ./0001-Fixing-paths-on-tests.patch
-  ];
+  patches = [ ./0001-Fixing-paths-on-tests.patch ];
 
   checkPhase = ''
     ${python.interpreter} tests/maintest.py
@@ -32,6 +31,6 @@ buildPythonPackage rec {
     description = "File format determination library";
     homepage = "https://github.com/floyernick/fleep-py";
     license = licenses.mit;
-    maintainers = with maintainers; [ wolfangaukang ];
+    maintainers = [ ];
   };
 }