hovercraft: migrate to pyproject and modernize build inputs (#465781)

This commit is contained in:
Yohann Boniface
2025-11-29 22:26:26 +00:00
committed by GitHub
+5 -3
View File
@@ -8,7 +8,7 @@
python3Packages.buildPythonApplication rec {
pname = "hovercraft";
version = "2.7";
format = "setuptools";
pyproject = true;
disabled = !python3Packages.isPy3k;
src = fetchFromGitHub {
@@ -18,7 +18,9 @@ python3Packages.buildPythonApplication rec {
hash = "sha256-X6EaiVahAYAaFB65oqmj695wlJFXNseqz0SQLzGVD0w=";
};
nativeCheckInputs = with python3Packages; [ manuel ];
build-system = [ python3Packages.setuptools ];
nativeCheckInputs = [ python3Packages.manuel ];
dependencies = with python3Packages; [
setuptools
@@ -41,6 +43,6 @@ python3Packages.buildPythonApplication rec {
mainProgram = "hovercraft";
homepage = "https://github.com/regebro/hovercraft";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ makefu ];
maintainers = [ lib.maintainers.makefu ];
};
}