From 429ed4411e8ca7f47a65919f406a03eda0e4eb29 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 4 Aug 2026 13:47:57 +0200 Subject: [PATCH] python3Packages.standardwebhooks: 1.0.1 -> 1.1.0 --- .../python-modules/standardwebhooks/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/standardwebhooks/default.nix b/pkgs/development/python-modules/standardwebhooks/default.nix index d2d248a51d7c..7107b34e853c 100644 --- a/pkgs/development/python-modules/standardwebhooks/default.nix +++ b/pkgs/development/python-modules/standardwebhooks/default.nix @@ -4,25 +4,24 @@ buildPythonPackage, deprecated, fetchPypi, + hatchling, httpx, - pytestCheckHook, python-dateutil, - setuptools, types-deprecated, types-python-dateutil, }: buildPythonPackage (finalAttrs: { pname = "standardwebhooks"; - version = "1.0.1"; + version = "1.1.0"; pyproject = true; src = fetchPypi { inherit (finalAttrs) pname version; - hash = "sha256-tVe7LksWraF5pRfsD+bL7FrPl2xWGZIr8pxFf4mkUb0="; + hash = "sha256-5ctm4hpjVuu5N1rrV/E0hYMyMBWAjUdafBuqpLcYBoo="; }; - build-system = [ setuptools ]; + build-system = [ hatchling ]; dependencies = [ attrs @@ -33,7 +32,8 @@ buildPythonPackage (finalAttrs: { types-python-dateutil ]; - nativeCheckInputs = [ pytestCheckHook ]; + # Tests are no shipped + doCheck = false; pythonImportsCheck = [ "standardwebhooks" ];