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
+37
View File
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
wheel,
# runtime deps
cadquery-ocp-proxy,
svgelements,
}:
buildPythonPackage
rec {
pname = "ocpsvg";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-8I2kNHzJDs01ZTlem9pXRtRquKr9aiaBuwOpwyG1QDk=";
};
# do not run tests
doCheck = false;
buildInputs = [
cadquery-ocp-proxy
svgelements
];
# specific to buildPythonPackage, see its reference
pyproject = true;
build-system = [
setuptools
setuptools-scm
# wheel
];
}