python3Packages.pixel-font-builder: init at 0.0.10
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, nix-update-script
|
||||
, hatch-vcs
|
||||
, hatchling
|
||||
, bdffont
|
||||
, brotli
|
||||
, fonttools
|
||||
, pypng
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pixel-font-builder";
|
||||
version = "0.0.10";
|
||||
|
||||
disabled = pythonOlder "3.11";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "pixel_font_builder";
|
||||
inherit version;
|
||||
hash = "sha256-evLsNRSC9sPZfhNc8tYbZ/bIrBxSbLuiGRD3ld7Jkbo=";
|
||||
};
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
nativeBuildInputs = [
|
||||
hatch-vcs
|
||||
hatchling
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pypng
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bdffont
|
||||
brotli
|
||||
fonttools
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/TakWolf/pixel-font-builder";
|
||||
description = "A library that helps create pixel style fonts";
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ h7x4 ];
|
||||
};
|
||||
}
|
||||
@@ -9123,6 +9123,8 @@ self: super: with self; {
|
||||
|
||||
pixelmatch = callPackage ../development/python-modules/pixelmatch { };
|
||||
|
||||
pixel-font-builder = callPackage ../development/python-modules/pixel-font-builder { };
|
||||
|
||||
pixel-ring = callPackage ../development/python-modules/pixel-ring { };
|
||||
|
||||
pjsua2 = (toPythonModule (pkgs.pjsip.override {
|
||||
|
||||
Reference in New Issue
Block a user