python3Packages.ahocorasick-rs: remove typing-extensions as dependency, not needed

034e3f67e1/pyproject.toml (L9-L10)
This commit is contained in:
Kerstin Humm 2024-08-29 13:07:44 +02:00 committed by Valentin Gagarin
parent 6e09c5fe8a
commit e06a8c8987

View File

@ -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 ];
};