From 2e8188df79d03bbab19de50618ea9a1f5060b1aa Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 31 Mar 2025 15:09:22 +0200 Subject: [PATCH] python313Packages.et-xmlfile: 1.1 -> 2.0.0 https://foss.heptapod.net/openpyxl/et_xmlfile/-/compare/refs/tags/1.1...2.0.0 --- .../development/python-modules/et-xmlfile/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/et-xmlfile/default.nix b/pkgs/development/python-modules/et-xmlfile/default.nix index 67d26aa36a07..b12bc700c5fb 100644 --- a/pkgs/development/python-modules/et-xmlfile/default.nix +++ b/pkgs/development/python-modules/et-xmlfile/default.nix @@ -5,12 +5,13 @@ lxml, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "et-xmlfile"; - version = "1.1"; - format = "setuptools"; + version = "2.0.0"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -18,10 +19,12 @@ buildPythonPackage rec { domain = "foss.heptapod.net"; owner = "openpyxl"; repo = "et_xmlfile"; - rev = version; - hash = "sha256-MJimcnYKujOL3FedGreNpuw1Jpg48ataDmFd1qwTS5A="; + tag = version; + hash = "sha256-JZ1fJ9o4/Z+9uSlaoq+pNpLSwl5Yv6BJCI1G7GOaQ1I="; }; + build-system = [ setuptools ]; + nativeCheckInputs = [ lxml pytestCheckHook