Files
nixpkgs/pkgs/development/python-modules/py-slvs/default.nix
Alex Davies c73d780958 python312Packages.py-slvs: init at 1.0.6
Forgot a typo

Apply suggestions from code review

Co-authored-by: Toma <62384384+TomaSajt@users.noreply.github.com>

Explicit imports

Process feedback from eclairevoyant
2024-06-04 17:00:52 -03:00

51 lines
781 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
swig,
cmake,
ninja,
setuptools,
scikit-build,
}:
buildPythonPackage rec {
pname = "py-slvs";
version = "1.0.6";
src = fetchPypi {
pname = "py_slvs";
inherit version;
sha256 = "sha256-U6T/aXy0JTC1ptL5oBmch0ytSPmIkRA8XOi31NpArnI=";
};
pyproject = true;
nativeBuildInputs = [
swig
];
build-system = [
cmake
ninja
setuptools
scikit-build
];
dontUseCmakeConfigure = true;
pythonImportsCheck = [
"py_slvs"
];
meta = {
description = "Python binding of SOLVESPACE geometry constraint solver";
homepage = "https://github.com/realthunder/slvs_py";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
traverseda
];
};
}