python3Packages.beautifultable: migrate to pyproject

This commit is contained in:
Harinn
2026-06-06 02:19:25 +07:00
parent 95543ad778
commit 1fbe39ded4
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wcwidth,
pytestCheckHook,
}:
@@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "beautifultable";
version = "1.1.0";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "pri22296";
@@ -18,7 +19,9 @@ buildPythonPackage rec {
hash = "sha256-/SReCEvSwiNjBoz/3tGJ9zUNBAag4mLsHlUXwm47zCw=";
};
propagatedBuildInputs = [ wcwidth ];
build-system = [ setuptools ];
dependencies = [ wcwidth ];
nativeCheckInputs = [ pytestCheckHook ];