about summary refs log tree commit diff
path: root/pkgs/development/python-modules/regress/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/regress/default.nix')
-rw-r--r--pkgs/development/python-modules/regress/default.nix20
1 files changed, 12 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/regress/default.nix b/pkgs/development/python-modules/regress/default.nix
index b70e52008778..e59496b767d1 100644
--- a/pkgs/development/python-modules/regress/default.nix
+++ b/pkgs/development/python-modules/regress/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, stdenv
-, fetchPypi
-, buildPythonPackage
-, rustPlatform
-, libiconv
+{
+  lib,
+  stdenv,
+  fetchPypi,
+  buildPythonPackage,
+  rustPlatform,
+  libiconv,
 }:
 
 buildPythonPackage rec {
@@ -17,7 +18,10 @@ buildPythonPackage rec {
     hash = "sha256-tCrFBjkK6obzaYkYiJ3WQ5yi3KkC86/cbXCSnRRGZu8=";
   };
 
-  nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];
+  nativeBuildInputs = with rustPlatform; [
+    cargoSetupHook
+    maturinBuildHook
+  ];
 
   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
 
@@ -28,7 +32,7 @@ buildPythonPackage rec {
   };
 
   meta = with lib; {
-    description = "Python bindings to the Rust regress crate, exposing ECMA regular expressions.";
+    description = "Python bindings to the Rust regress crate, exposing ECMA regular expressions";
     homepage = "https://github.com/Julian/regress";
     license = licenses.mit;
     maintainers = [ maintainers.matthiasbeyer ];