python3Packages.ahocorapy: drop future dependency

This fixes the build on Python 3.13.
This commit is contained in:
Martin Weinelt
2025-07-23 02:35:31 +02:00
parent 8405a97c79
commit 0b44ff1c6e

View File

@@ -1,7 +1,6 @@
{ {
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
future,
lib, lib,
pytestCheckHook, pytestCheckHook,
setuptools, setuptools,
@@ -21,9 +20,7 @@ buildPythonPackage rec {
build-system = [ setuptools ]; build-system = [ setuptools ];
dependencies = [ pythonRemoveDeps = [ "future" ];
future
];
pythonImportsCheck = [ "ahocorapy" ]; pythonImportsCheck = [ "ahocorapy" ];