python3Packages.termgraph: fix build

This commit is contained in:
Gaël James
2026-02-24 22:46:34 +01:00
parent f2b583deb5
commit 9040a41cf9
@@ -2,6 +2,7 @@
buildPythonPackage,
colorama,
fetchFromGitHub,
hatchling,
lib,
pytestCheckHook,
}:
@@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "termgraph";
version = "0.7.5";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "mkaz";
@@ -18,6 +19,8 @@ buildPythonPackage rec {
hash = "sha256-DptokK79yAfQDuhN2d/HfcaRq//0pF81VkhMfz05Hb0=";
};
build-system = [ hatchling ];
propagatedBuildInputs = [ colorama ];
nativeCheckInputs = [ pytestCheckHook ];