python3Packages.ase: 3.28.0 -> 3.29.0

https://ase-lib.org/releasenotes.html
This commit is contained in:
Martin Weinelt
2026-07-03 01:07:23 +02:00
parent 74d0964941
commit 448d62b526
@@ -16,6 +16,7 @@
psycopg2,
scipy,
tkinter,
typing-extensions,
# tests
addBinToPathHook,
@@ -27,14 +28,14 @@
buildPythonPackage rec {
pname = "ase";
version = "3.28.0";
version = "3.29.0";
pyproject = true;
src = fetchFromGitLab {
owner = "ase";
repo = "ase";
tag = version;
hash = "sha256-ZbQxCd8uFTNPVUjjsCCiZR9pKRucobWfxDZGdyMm6ko=";
hash = "sha256-hMeGeQFoC+eWfHkJize21IdxLKAR7Oc0Txwg2BQIvWg=";
};
build-system = [ setuptools ];
@@ -46,6 +47,7 @@ buildPythonPackage rec {
pillow
psycopg2
scipy
typing-extensions
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
tkinter
@@ -59,6 +61,10 @@ buildPythonPackage rec {
writableTmpDirAsHomeHook
];
pytestFlags = [
"-Wignore::DeprecationWarning"
];
disabledTests = [
"test_fundamental_params"
"test_ase_bandstructure"