From bc84b2e65e59d4981eb174852d440399f8f066f4 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 26 Oct 2025 21:54:31 +0000 Subject: [PATCH] python3Packages.hyperscan: cleanup --- pkgs/development/python-modules/hyperscan/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/hyperscan/default.nix b/pkgs/development/python-modules/hyperscan/default.nix index 5a38fe5c58ca..3622fa465f1b 100644 --- a/pkgs/development/python-modules/hyperscan/default.nix +++ b/pkgs/development/python-modules/hyperscan/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { dontUseCmakeConfigure = true; - nativeBuildInputs = [ + build-system = [ cmake pathspec ninja @@ -53,7 +53,7 @@ buildPythonPackage rec { pytest-mock ]; - meta = with lib; { + meta = { description = "CPython extension for the Hyperscan regular expression matching library"; homepage = "https://github.com/darvid/python-hyperscan"; changelog = "https://github.com/darvid/python-hyperscan/blob/${src.tag}/CHANGELOG.md"; @@ -61,7 +61,7 @@ buildPythonPackage rec { "x86_64-linux" "x86_64-darwin" ]; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; }