python3Packages.pcffont: 0.0.25 -> 0.0.33

This commit is contained in:
h7x4
2026-08-18 19:02:44 +09:00
parent dab930edcf
commit 49f3caaecd

View File

@@ -6,25 +6,28 @@
nix-update-script,
uv-build,
bdffont,
freetype-py,
}:
buildPythonPackage rec {
pname = "pcffont";
version = "0.0.25";
version = "0.0.33";
pyproject = true;
src = fetchFromGitHub {
owner = "TakWolf";
repo = "pcffont";
tag = version;
hash = "sha256-xxTOw7Fdey5YKDY1kq3EiAjW2jNHIU3wFDKvHdPgAQc=";
hash = "sha256-inK/+oQkWfhIwhUjN3TkKvyk0AAxoliSsUzR84tLt9U=";
};
build-system = [ uv-build ];
dependencies = [ bdffont ];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
pytestCheckHook
bdffont
freetype-py
];
pythonImportsCheck = [ "pcffont" ];