Unverified Commit 36e2fde9 authored by éclairevoyant's avatar éclairevoyant
Browse files

python311Packages.pixel-font-builder: 0.0.19 -> 0.0.24

parent bdfc3621
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
@@ -10,23 +10,32 @@
, brotli
, fonttools
, pypng
, pcffont
, pythonRelaxDepsHook
}:

buildPythonPackage rec {
  pname = "pixel-font-builder";
  version = "0.0.19";
  version = "0.0.24";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchPypi {
    pname = "pixel_font_builder";
    inherit version;
    hash = "sha256-f38DyM5hojHfv8k/W6kcHxbOjz43hHW6i4Scm6NbHiQ=";
    hash = "sha256-hBlTTIPx4TRgeXapVnSaKPUwseR3uYT0gcgKLGmmSZI=";
  };

  format = "pyproject";
  pythonRelaxDeps = [
    "fonttools"
  ];

  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];

  build-system = [
    hatch-vcs
    hatchling
  ];
@@ -36,10 +45,11 @@ buildPythonPackage rec {
    pypng
  ];

  propagatedBuildInputs = [
  dependencies = [
    bdffont
    brotli
    fonttools
    pcffont
  ];

  passthru.updateScript = nix-update-script { };