python3Packages.unidic-lite: modernize and migrate to pyproject (#522864)

This commit is contained in:
Yohann Boniface
2026-05-30 22:17:33 +00:00
committed by GitHub
@@ -2,18 +2,21 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "unidic-lite";
version = "1.0.8";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
sha256 = "0idj4yp0sl27ylr2wzkybbh0wj7c843lp7cljw5d1m7xv5r4b7fv";
};
build-system = [ setuptools ];
# no tests
doCheck = false;
@@ -25,4 +28,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
}
})