chore(build123d): create the build123d scafold that is not yet working

This commit is contained in:
2026-04-26 19:56:29 -05:00
parent fbaed7851b
commit e2f2abb1ac
10 changed files with 660 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
wheel,
# runtime deps
}:
buildPythonPackage
rec {
pname = "trianglesolver";
version = "1.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-SvGKreV51cDWQ4mz5lrq8Gz/JjGXYszYWeMmhVmnauo=";
};
# do not run tests
doCheck = false;
buildInputs = [
];
# specific to buildPythonPackage, see its reference
pyproject = true;
build-system = [
setuptools
# setuptools-scm
# wheel
];
}