Merge pull request #246143 from natsukium/scikit-build-core/update

python310Packages.scikit-build-core: 0.2.0 -> 0.4.8
This commit is contained in:
Dmitry Kalinkin 2023-08-17 12:14:04 -04:00 committed by GitHub
commit cf04434459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ];
};