diff --git a/pkgs/development/python-modules/scikit-build-core/default.nix b/pkgs/development/python-modules/scikit-build-core/default.nix index 7688ff6d3d71..c3fac4ea34df 100644 --- a/pkgs/development/python-modules/scikit-build-core/default.nix +++ b/pkgs/development/python-modules/scikit-build-core/default.nix @@ -8,6 +8,7 @@ , hatchling , cattrs , cmake +, ninja , packaging , pathspec , pyproject-metadata @@ -18,13 +19,13 @@ buildPythonPackage rec { pname = "scikit-build-core"; - version = "0.2.0"; + version = "0.4.8"; format = "pyproject"; src = fetchPypi { pname = "scikit_build_core"; inherit version; - hash = "sha256-0qdtlEekEgONxeJd0lmwPCUnhmGgx8Padmu5ccGprNI="; + hash = "sha256-n6wcrBo4uhFoGQt72Y9irs8GzUbbcYXsjCeyfg2krUs="; }; postPatch = '' @@ -58,14 +59,17 @@ buildPythonPackage rec { nativeCheckInputs = [ cattrs cmake + ninja pytest-subprocess pytestCheckHook ] ++ passthru.optional-dependencies.pyproject; disabledTestPaths = [ # runs pip, requires network access + "tests/test_custom_modules.py" "tests/test_pyproject_pep517.py" "tests/test_pyproject_pep518.py" + "tests/test_pyproject_pep660.py" "tests/test_setuptools_pep517.py" "tests/test_setuptools_pep518.py" ]; @@ -77,6 +81,7 @@ buildPythonPackage rec { meta = with lib; { description = "A next generation Python CMake adaptor and Python API for plugins"; homepage = "https://github.com/scikit-build/scikit-build-core"; + changelog = "https://github.com/scikit-build/scikit-build-core/releases/tag/v${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ veprbl ]; };