mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-25 01:50:40 +00:00
python3Packages.textdistance: migrate to pyproject
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user