summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyperscan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyperscan/default.nix')
-rw-r--r--pkgs/development/python-modules/pyperscan/default.nix27
1 files changed, 17 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/pyperscan/default.nix b/pkgs/development/python-modules/pyperscan/default.nix
index 954da379d7ed..8659fb7937a0 100644
--- a/pkgs/development/python-modules/pyperscan/default.nix
+++ b/pkgs/development/python-modules/pyperscan/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, buildPythonPackage
-, rustPlatform
-, pytestCheckHook
-, libiconv
-, vectorscan
+{
+ lib,
+ stdenv,
+ fetchFromGitHub,
+ buildPythonPackage,
+ rustPlatform,
+ pytestCheckHook,
+ libiconv,
+ vectorscan,
}:
buildPythonPackage rec {
@@ -45,7 +46,13 @@ buildPythonPackage rec {
description = "a hyperscan binding for Python, which supports vectorscan";
homepage = "https://github.com/vlaci/pyperscan";
platforms = platforms.unix;
- license = with licenses; [ asl20 /* or */ mit ];
- maintainers = with maintainers; [ tnias vlaci ];
+ license = with licenses; [
+ asl20 # or
+ mit
+ ];
+ maintainers = with maintainers; [
+ tnias
+ vlaci
+ ];
};
}