python311Packages.pcffont: init at 0.0.11

This commit is contained in:
éclairevoyant
2024-05-11 04:58:58 -04:00
parent e78b910042
commit bdfc362110
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, bdffont
, pytestCheckHook
, nix-update-script
}:
buildPythonPackage rec {
pname = "pcffont";
version = "0.0.11";
pyproject = true;
src = fetchFromGitHub {
owner = "TakWolf";
repo = "pcffont";
rev = "refs/tags/${version}";
hash = "sha256-gu9niWxYTw3rcA++z8B+MdKp5XaqAGjmvd+PdSDosfg=";
};
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; [ ];
};
}
+2
View File
@@ -1338,6 +1338,8 @@ self: super: with self; {
paddlepaddle = callPackage ../development/python-modules/paddlepaddle { };
pcffont = callPackage ../development/python-modules/pcffont { };
pueblo = callPackage ../development/python-modules/pueblo { };
pulumi = callPackage ../development/python-modules/pulumi { inherit (pkgs) pulumi; };