python313Packages.word2number: fix build (#434736)

This commit is contained in:
Gaétan Lepage 2025-08-19 11:47:45 +02:00 committed by GitHub
commit e65e534914
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,7 @@
setuptools-scm, setuptools-scm,
future, future,
python, python,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -23,7 +24,7 @@ buildPythonPackage rec {
setuptools-scm setuptools-scm
]; ];
dependencies = [ dependencies = lib.optionals (pythonOlder "3.13") [
future future
]; ];