nixpkgs/pkgs/development/python-modules/solidpython2/default.nix
Martin Weinelt 8dc4f2b017 python3Packages.solidpython2: 2.1.0 -> 2.1.3
This commit was automatically generated using update-python-libraries.
2026-02-01 17:38:56 +01:00

50 lines
1.3 KiB
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
ply,
setuptools,
poetry-core,
withOpenSCAD ? false,
openscad,
}:
buildPythonPackage rec {
pname = "solidpython2";
version = "2.1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "jeff-dh";
repo = "SolidPython";
tag = "v${version}";
hash = "sha256-3A1vYqIHFUiOH2cEx/XSOien3PmNpMAhLOe3T1yubx4=";
};
# NOTE: this patch makes tests runnable outside the source-tree
# - it uses diff instead of git-diff
# - modifies the tests output to resemble the paths resulting from running inside the source-tree
# - drop the openscad image geneneration tests, these don't work on the nix sandbox due to the need for xserver
patches = [ ./difftool_tests.patch ];
propagatedBuildInputs = lib.optionals withOpenSCAD [ openscad ];
build-system = [
poetry-core
];
dependencies = [
ply
setuptools
];
pythonImportsCheck = [ "solid2" ];
checkPhase = ''
runHook preCheck
python $TMPDIR/source/tests/run_tests.py
runHook postCheck
'';
meta = {
homepage = "https://github.com/jeff-dh/SolidPython";
description = "Python frontend for solid modelling that compiles to OpenSCAD";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ jonboh ];
};
}