From 890f5fab91292966673baa4562cd4477683ae539 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 25 Dec 2025 12:02:34 +0100 Subject: [PATCH] python313Packages.policy-sentry: 0.14.1 -> 0.15.1 Changelog: https://github.com/salesforce/policy_sentry/releases/tag/0.15.1 --- .../python-modules/policy-sentry/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/policy-sentry/default.nix b/pkgs/development/python-modules/policy-sentry/default.nix index 80d36c4efb8f..69721d9f3480 100644 --- a/pkgs/development/python-modules/policy-sentry/default.nix +++ b/pkgs/development/python-modules/policy-sentry/default.nix @@ -4,27 +4,29 @@ buildPythonPackage, click, fetchFromGitHub, + hatchling, orjson, pytestCheckHook, pyyaml, requests, schema, - setuptools, }: buildPythonPackage rec { pname = "policy-sentry"; - version = "0.14.1"; + version = "0.15.1"; pyproject = true; src = fetchFromGitHub { owner = "salesforce"; repo = "policy_sentry"; tag = version; - hash = "sha256-o4l4jkh9ZNqc3Jovd10KUQLDBLn0sPWdgScq5Q2qd14="; + hash = "sha256-G7V3BqgJs9nyvhZ9xzNwP50yz+2SZfps/gsW6U8eisk="; }; - build-system = [ setuptools ]; + pythonRelaxDeps = [ "beautifulsoup4" ]; + + build-system = [ hatchling ]; dependencies = [ beautifulsoup4