python313Packages.word2number: fix build

This commit is contained in:
Sigmanificient 2025-08-18 15:53:18 +02:00
parent e43ac5cf0a
commit e13b04211c

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