about summary refs log tree commit diff
path: root/pkgs/development/python-modules/snuggs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/snuggs/default.nix')
-rw-r--r--pkgs/development/python-modules/snuggs/default.nix32
1 files changed, 20 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/snuggs/default.nix b/pkgs/development/python-modules/snuggs/default.nix
index 8824645973ede..b742c8d6985ad 100644
--- a/pkgs/development/python-modules/snuggs/default.nix
+++ b/pkgs/development/python-modules/snuggs/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
-, click
-, numpy
-, pyparsing
-, pytestCheckHook
-, hypothesis
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  fetchpatch,
+  click,
+  numpy,
+  pyparsing,
+  pytestCheckHook,
+  hypothesis,
 }:
 
 buildPythonPackage rec {
@@ -31,14 +32,21 @@ buildPythonPackage rec {
     })
   ];
 
-  propagatedBuildInputs = [ click numpy pyparsing ];
+  propagatedBuildInputs = [
+    click
+    numpy
+    pyparsing
+  ];
 
-  nativeCheckInputs = [ pytestCheckHook hypothesis ];
+  nativeCheckInputs = [
+    pytestCheckHook
+    hypothesis
+  ];
 
   meta = with lib; {
     description = "S-expressions for Numpy";
     license = licenses.mit;
     homepage = "https://github.com/mapbox/snuggs";
-    maintainers = with maintainers; [ mredaelli ];
+    maintainers = with maintainers; [ ];
   };
 }