From c83e491c7265601e217f7118d49023af610e3d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 20 Oct 2025 14:48:28 +0200 Subject: [PATCH] python3Packages.hawkmoth: 0.21.0 -> 0.22.0 This removes LLVM version pin added in 786c47896e030a060f58de4f969193a498bc6fcd. https://github.com/jnikula/hawkmoth/releases/tag/v0.22.0 --- .../python-modules/hawkmoth/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) 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 ];