mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 17:23:57 +00:00
38 lines
775 B
Nix
38 lines
775 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
uv-build,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "bdffont";
|
|
version = "0.0.36";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TakWolf";
|
|
repo = "bdffont";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-PCx1uMjCa5d8odDGRi4BRaf1E1AP0oZUv0QYr24E6Yo=";
|
|
};
|
|
|
|
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
|
|
];
|
|
};
|
|
})
|