python3Packages.textdistance: migrate to pyproject

This commit is contained in:
Harinn
2026-07-24 02:57:11 +07:00
parent e857b0dcbf
commit a60d2c4cfe

View File

@@ -2,18 +2,21 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "textdistance";
version = "4.6.3";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1tq8ULTqgyzc8OHmAhvQx/zZreFViI15u2o8Mfzi3G8=";
};
build-system = [ setuptools ];
# There aren't tests
doCheck = false;