From e06a8c89877f85a743c7a8ab7ee4b9ce4a53dc86 Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Thu, 29 Aug 2024 13:07:44 +0200 Subject: [PATCH] python3Packages.ahocorasick-rs: remove typing-extensions as dependency, not needed https://github.com/G-Research/ahocorasick_rs/blob/034e3f67e12198c08137bb9fb3153cb01cf5da31/pyproject.toml#L9-L10 --- pkgs/development/python-modules/ahocorasick-rs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ahocorasick-rs/default.nix b/pkgs/development/python-modules/ahocorasick-rs/default.nix index 3ad7ebbc44bd..aeb12385ac79 100644 --- a/pkgs/development/python-modules/ahocorasick-rs/default.nix +++ b/pkgs/development/python-modules/ahocorasick-rs/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { src = fetchPypi { inherit version; pname = "ahocorasick_rs"; - sha256 = "sha256-lzRwODlJlymMSih3CqNIeR+HrUbgVhroM1JuHFfW848="; + hash = "sha256-lzRwODlJlymMSih3CqNIeR+HrUbgVhroM1JuHFfW848="; }; cargoDeps = rustPlatform.fetchCargoTarball { @@ -31,7 +31,6 @@ buildPythonPackage rec { nativeBuildInputs = with rustPlatform; [ maturinBuildHook cargoSetupHook - typing-extensions ]; nativeCheckInputs = [ @@ -46,6 +45,7 @@ buildPythonPackage rec { meta = with lib; { description = "Fast Aho-Corasick algorithm for Python"; homepage = "https://github.com/G-Research/ahocorasick_rs/"; + changelog = "https://github.com/G-Research/ahocorasick_rs/blob/${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ erictapen ]; };