about summary refs log tree commit diff
path: root/pkgs/development/python-modules/deap/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/deap/default.nix')
-rw-r--r--pkgs/development/python-modules/deap/default.nix25
1 files changed, 16 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/deap/default.nix b/pkgs/development/python-modules/deap/default.nix
index aa581062c5f9d..ec804ae1ba936 100644
--- a/pkgs/development/python-modules/deap/default.nix
+++ b/pkgs/development/python-modules/deap/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, matplotlib
-, numpy
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  matplotlib,
+  numpy,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -16,13 +17,19 @@ buildPythonPackage rec {
     hash = "sha256-zAHemJLfp9G8mAPasoiS/q0XfwGCyB20c2CiQOrXeP8=";
   };
 
-  propagatedBuildInputs = [ matplotlib numpy ];
+  propagatedBuildInputs = [
+    matplotlib
+    numpy
+  ];
   nativeCheckInputs = [ pytestCheckHook ];
 
   meta = with lib; {
-    description = "A novel evolutionary computation framework for rapid prototyping and testing of ideas";
+    description = "Novel evolutionary computation framework for rapid prototyping and testing of ideas";
     homepage = "https://github.com/DEAP/deap";
     license = licenses.lgpl3Plus;
-    maintainers = with maintainers; [ getpsyched psyanticy ];
+    maintainers = with maintainers; [
+      getpsyched
+      psyanticy
+    ];
   };
 }