Files
nixpkgs/pkgs/development/python-modules/bdffont/default.nix
T
Weijia Wang 822ce1869f Merge pull request #313065 from r-ryantm/auto-update/python311Packages.bdffont
python311Packages.bdffont: 0.0.24 -> 0.0.25
2024-06-02 19:55:23 +02:00

44 lines
805 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
nix-update-script,
hatch-vcs,
hatchling,
brotli,
fonttools,
}:
buildPythonPackage rec {
pname = "bdffont";
version = "0.0.25";
disabled = pythonOlder "3.11";
src = fetchPypi {
inherit pname version;
hash = "sha256-IQ18ospOCg/iyT0Ts+BwfbFqUBz71War7c3KMl/3z+Y=";
};
format = "pyproject";
nativeBuildInputs = [
hatch-vcs
hatchling
];
nativeCheckInputs = [ pytestCheckHook ];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/TakWolf/bdffont";
description = "A library for manipulating .bdf format fonts";
platforms = lib.platforms.all;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ h7x4 ];
};
}