python3Packages.ahocorapy: drop future dependency

This fixes the build on Python 3.13.

Changed files
+1 -4
pkgs
development
python-modules
ahocorapy
+1 -4
pkgs/development/python-modules/ahocorapy/default.nix
···
{
buildPythonPackage,
fetchFromGitHub,
-
future,
lib,
pytestCheckHook,
setuptools,
···
build-system = [ setuptools ];
-
dependencies = [
-
future
-
];
+
pythonRemoveDeps = [ "future" ];
pythonImportsCheck = [ "ahocorapy" ];