diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-05 12:20:58 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:05 +0100 |
| commit | 21f15ea4da6289a28c58feb8d5265a9f12576bd1 (patch) | |
| tree | 67f8fae30caedf96f33b03507cbc55c922b16e9b /gnu/packages/python-xyz.scm | |
| parent | 0b3a240aec9e435bf69e3d137a634c8d683245c2 (diff) | |
gnu: python-scikit-build: Update to 0.18.1.
* gnu/packages/python-xyz.scm (python-scikit-build): Update to 0.18.1.
[srouce] <patch>: Add patch fixing compatability with newer
Setuptools, taken from upstream.
[propagated-inputs]: Remove python-tomli.
[native-inputs]: Remove python-coverage, python-mock,
python-packaging, python-path, python-pytest-cov,
python-pytest-virtualenv, and python-setuptools-scm.
* gnu/packages/patches/python-scikit-build-setuptools-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register new patch.
Change-Id: I132f6558188c32e7e31fd78527ec6805b91a1443
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4a3ae8e172..bd26d8540d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35470,13 +35470,15 @@ and frame grabber interface.") (define-public python-scikit-build (package (name "python-scikit-build") - (version "0.17.6") + (version "0.18.1") (source (origin (method url-fetch) (uri (pypi-uri "scikit_build" version)) (sha256 - (base32 "17awdvpzj4bn50gk4gmj20r2xcjr5y8lfl2bk582di1pdfim26mm")))) + (base32 "1rxqzigfacpbcfhf3c1gdqrnqdnq503bx5vpib19km44l32jl5d4")) + (patches + (search-patches "python-scikit-build-setuptools-compat.patch")))) (build-system pyproject-build-system) (arguments (list @@ -35539,24 +35541,19 @@ and frame grabber interface.") gfortran git-minimal/pinned ;for tests ninja/pinned - python-coverage python-cython - python-hatchling python-hatch-fancy-pypi-readme python-hatch-vcs - python-mock - python-packaging - python-path + python-hatchling python-pytest - python-pytest-cov python-pytest-mock - python-pytest-virtualenv python-pytest-xdist python-requests - python-setuptools-scm python-virtualenv)) (propagated-inputs - (list python-distro python-packaging python-tomli python-wheel)) + (list python-distro + python-packaging + python-wheel)) (home-page "https://github.com/scikit-build/scikit-build") (synopsis "Build system generator for Python C/C++/Fortran/Cython extensions") (description "Scikit-build is an improved build system generator for |
