Files
nixpkgs/pkgs/development/python-modules/pcffont/default.nix
T
2024-05-19 02:05:08 +00:00

45 lines
821 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, bdffont
, pytestCheckHook
, nix-update-script
}:
buildPythonPackage rec {
pname = "pcffont";
version = "0.0.13";
pyproject = true;
src = fetchFromGitHub {
owner = "TakWolf";
repo = "pcffont";
rev = "refs/tags/${version}";
hash = "sha256-DbPcE2Bx+V90s7P3Gq+Uz3iQNidwbNlp7zln8ykL7Sg=";
};
build-system = [
hatchling
];
dependencies = [
bdffont
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "pcffont" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Library for manipulating Portable Compiled Format (PCF) fonts";
homepage = "https://github.com/TakWolf/pcffont";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}