python3Packages.unidic-lite: modernize and migrate to pyproject

This commit is contained in:
SandaruKasa
2026-05-30 15:09:03 +03:00
parent 0603359060
commit a7a576d5c5
@@ -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 ];
};
}
})