python3Packages.hawkmoth: 0.21.0 -> 0.22.0 (#453856)

This commit is contained in:
Michael Daniels
2026-02-01 20:09:49 +00:00
committed by GitHub
@@ -3,40 +3,35 @@
buildPythonPackage,
fetchFromGitHub,
hatchling,
llvmPackages_20,
libclang,
sphinx,
clang,
pytestCheckHook,
strictyaml,
}:
let
libclang_20 = libclang.override {
llvmPackages = llvmPackages_20;
};
in
buildPythonPackage rec {
pname = "hawkmoth";
version = "0.21.0";
version = "0.22.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jnikula";
repo = "hawkmoth";
tag = "v${version}";
hash = "sha256-ePi7whsibStYwG75Eso7A0GkSbn8JesacaDU5IRF9iE=";
hash = "sha256-iFyTayPC4TWOfTZrfJJILJyi5BWrsVLwnSFnSeMpB2c=";
};
build-system = [ hatchling ];
dependencies = [
libclang_20
libclang
sphinx
];
propagatedBuildInputs = [ llvmPackages_20.clang ];
propagatedBuildInputs = [ clang ];
nativeCheckInputs = [
llvmPackages_20.clang
clang
pytestCheckHook
strictyaml
];