diff --git a/pkgs/development/python-modules/hawkmoth/default.nix b/pkgs/development/python-modules/hawkmoth/default.nix index 03520ea155a6..ed1a0cc67f86 100644 --- a/pkgs/development/python-modules/hawkmoth/default.nix +++ b/pkgs/development/python-modules/hawkmoth/default.nix @@ -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 ];