python3Packages.spglib: 2.6.0 -> 2.7.0

https://github.com/spglib/spglib/raw/v2.7.0/ChangeLog

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:38:56 +01:00
parent c37bdc0280
commit 216f28251b
@@ -5,10 +5,11 @@
pythonOlder,
# build-system
cmake,
scikit-build-core,
numpy,
cmake,
ninja,
pybind11,
setuptools-scm,
# dependencies
@@ -21,20 +22,21 @@
buildPythonPackage rec {
pname = "spglib";
version = "2.6.0";
version = "2.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "spglib";
repo = "spglib";
tag = "v${version}";
hash = "sha256-rmQYFFfpyUhT9pfQZk1fN5tZWTg40wwtszhPhiZpXs4=";
hash = "sha256-RFvd/j/14YRIcQTpnYPx5edeF3zbHbi90jb32i3ZU/c=";
};
build-system = [
cmake
scikit-build-core
numpy
cmake
pybind11
ninja
setuptools-scm
];
@@ -58,7 +60,7 @@ buildPythonPackage rec {
meta = {
description = "Python bindings for C library for finding and handling crystal symmetries";
homepage = "https://spglib.github.io/spglib/";
changelog = "https://github.com/spglib/spglib/raw/v${version}/ChangeLog";
changelog = "https://github.com/spglib/spglib/raw/${src.tag}/ChangeLog";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ psyanticy ];
};