python313Packages.scikit-build-core: 0.11.0 -> 0.11.1

https://github.com/scikit-build/scikit-build-core/blob/refs/tags/v0.11.1/docs/about/changelog.md
This commit is contained in:
Martin Weinelt 2025-04-01 03:29:11 +02:00
parent 03a5d60a7f
commit 1c20228f08
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -30,14 +30,14 @@
buildPythonPackage rec {
pname = "scikit-build-core";
version = "0.11.0";
version = "0.11.1";
pyproject = true;
src = fetchFromGitHub {
owner = "scikit-build";
repo = "scikit-build-core";
rev = "refs/tags/v${version}";
hash = "sha256-t22/681GHA3tKBTNQ2b3A8cgMTsUiYUGptRtC2i9W6g=";
hash = "sha256-Tn4IyVbDNImSMOwL17D3W9I+mWS1aaTHr0LRR+in+IY=";
};
postPatch = lib.optionalString (pythonOlder "3.11") ''
@ -89,7 +89,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "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/blob/${src.rev}/docs/changelog.md";
changelog = "https://github.com/scikit-build/scikit-build-core/blob/${src.rev}/docs/about/changelog.md";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ veprbl ];
};