From 3d205a7ce90e0dd88909f0901739ee630e279db9 Mon Sep 17 00:00:00 2001 From: Pyrox Date: Sun, 28 Jul 2024 22:02:41 -0400 Subject: [PATCH] python312Packages.pyexcel-ods: modernize --- pkgs/development/python-modules/pyexcel-ods/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyexcel-ods/default.nix b/pkgs/development/python-modules/pyexcel-ods/default.nix index 0dcb5e87e96f..e7683a259fd3 100644 --- a/pkgs/development/python-modules/pyexcel-ods/default.nix +++ b/pkgs/development/python-modules/pyexcel-ods/default.nix @@ -10,12 +10,13 @@ psutil, pytestCheckHook, pytest-cov, + setuptools, }: buildPythonPackage rec { pname = "pyexcel-ods"; version = "0.6.0"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "pyexcel"; @@ -33,7 +34,9 @@ buildPythonPackage rec { }) ]; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ pyexcel-io odfpy ]; @@ -50,6 +53,6 @@ buildPythonPackage rec { description = "Plug-in to pyexcel providing the capbility to read, manipulate and write data in ods formats using odfpy"; homepage = "http://docs.pyexcel.org/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }