Commit 56557421 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.bdffont: 0.0.32 -> 0.0.35

This commit was automatically generated using update-python-libraries.
parent 0ae68654
Loading
Loading
Loading
Loading
+11 −13
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  pytestCheckHook,
  nix-update-script,
  hatchling,
  uv-build,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "bdffont";
  version = "0.0.32";
  version = "0.0.35";
  pyproject = true;

  src = fetchPypi {
    pname = "bdffont";
    inherit version;
    hash = "sha256-5O1AlidPMhp0ztzBi/eHJToFSKMcx+EuQHltt/w4goQ=";
  src = fetchFromGitHub {
    owner = "TakWolf";
    repo = "bdffont";
    tag = finalAttrs.version;
    hash = "sha256-a93l7iX2/Htigs36zCv1x8SAGzycGU2y/stN0j794fw=";
  };

  build-system = [ hatchling ];
  build-system = [ uv-build ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "bdffont" ];

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

  meta = {
    homepage = "https://github.com/TakWolf/bdffont";
    description = "Library for manipulating Glyph Bitmap Distribution Format (BDF) Fonts";
@@ -36,4 +34,4 @@ buildPythonPackage rec {
      h7x4
    ];
  };
}
})