Files
nixpkgs/pkgs/development/python-modules/bdffont/default.nix
T
Martin Weinelt 56557421b8 python3Packages.bdffont: 0.0.32 -> 0.0.35
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:20 +01:00

38 lines
775 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
uv-build,
}:
buildPythonPackage (finalAttrs: {
pname = "bdffont";
version = "0.0.35";
pyproject = true;
src = fetchFromGitHub {
owner = "TakWolf";
repo = "bdffont";
tag = finalAttrs.version;
hash = "sha256-a93l7iX2/Htigs36zCv1x8SAGzycGU2y/stN0j794fw=";
};
build-system = [ uv-build ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bdffont" ];
meta = {
homepage = "https://github.com/TakWolf/bdffont";
description = "Library for manipulating Glyph Bitmap Distribution Format (BDF) Fonts";
platforms = lib.platforms.all;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
TakWolf
h7x4
];
};
})