depot/third_party/nixpkgs/pkgs/development/python-modules/pcffont/default.nix

40 lines
812 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
bdffont,
pytestCheckHook,
nix-update-script,
}:
buildPythonPackage rec {
pname = "pcffont";
version = "0.0.14";
pyproject = true;
src = fetchFromGitHub {
owner = "TakWolf";
repo = "pcffont";
rev = "refs/tags/${version}";
hash = "sha256-UIRhUlsRd3ICdLAjUasQ1NX5NofSKCEqa8cf1c1voGM=";
};
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; [ ];
};
}