python3Packages.unidata-blocks: 0.0.24 -> 0.0.25 (#528481)

This commit is contained in:
Nick Cao
2026-06-05 20:23:48 +00:00
committed by GitHub

View File

@@ -8,23 +8,21 @@
langcodes,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "unidata-blocks";
version = "0.0.24";
version = "0.0.25";
pyproject = true;
src = fetchFromGitHub {
owner = "TakWolf";
repo = "unidata-blocks";
tag = version;
hash = "sha256-WGo7Sn2lubsOWfLglBAEx/2PQ1YCrF/wI7/pDwoHMRk=";
tag = finalAttrs.version;
hash = "sha256-BWcKqTMYdJ59XncPL29wCms2kCVTrcrV1zSY8mkbErs=";
};
build-system = [ uv-build ];
dependencies = [
langcodes
];
dependencies = [ langcodes ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -33,13 +31,12 @@ buildPythonPackage rec {
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/TakWolf/unidata-blocks";
description = "Library that helps query unicode blocks by Blocks.txt";
platforms = lib.platforms.all;
homepage = "https://github.com/TakWolf/unidata-blocks";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
TakWolf
h7x4
];
};
}
})