python312Packages.pyexcel-ods: modernize

This commit is contained in:
Pyrox
2024-07-28 22:02:41 -04:00
parent 792b0849b7
commit 3d205a7ce9
@@ -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 = [ ];
};
}