python3Packages.click-command-tree: migrate to pyproject (#529036)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-07 17:05:14 +00:00
committed by GitHub
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
click,
pytestCheckHook,
}:
@@ -9,7 +10,9 @@
buildPythonPackage (finalAttrs: {
pname = "click-command-tree";
version = "1.2.0";
format = "setuptools";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "whwright";
@@ -18,7 +21,9 @@ buildPythonPackage (finalAttrs: {
hash = "sha256-oshAHCGe8p5BQ0W21bXSxrTCEFgIxZ6BmUEiWB1xAoI=";
};
propagatedBuildInputs = [ click ];
build-system = [ setuptools ];
dependencies = [ click ];
nativeCheckInputs = [ pytestCheckHook ];