From 3435b8e4286defa21efb076a4142d1a2bded70a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 3 Mar 2025 09:24:02 -0800 Subject: [PATCH] python313Packages.weheat: 2025.2.13 -> 2025.2.27 Diff: https://github.com/wefabricate/wh-python/compare/refs/tags/2025.2.13...2025.2.27 --- pkgs/development/python-modules/weheat/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/weheat/default.nix b/pkgs/development/python-modules/weheat/default.nix index c99ebbb8a758..445920702abc 100644 --- a/pkgs/development/python-modules/weheat/default.nix +++ b/pkgs/development/python-modules/weheat/default.nix @@ -7,28 +7,24 @@ fetchFromGitHub, pydantic, python-dateutil, - pythonOlder, setuptools, urllib3, }: buildPythonPackage rec { pname = "weheat"; - version = "2025.2.13"; + version = "2025.2.27"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "wefabricate"; repo = "wh-python"; tag = version; - hash = "sha256-YXo+pwgCjw2CWUCS9DY9jaLjhj+q+ZqfW3uh1aSXnM0="; + hash = "sha256-DrBOx++Rp/5s8sU07+/cuy2Je27i84WCY3/mljLfawk="; }; pythonRelaxDeps = [ "urllib3" - "pydantic" ]; build-system = [ setuptools ];