diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-25 21:23:24 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-25 21:24:45 +0200 |
commit | 1e9def3dac43b5d1b30749b7fc944994bb3ef016 (patch) | |
tree | 6443a76656a4a390668c0be5a586cb0e5bf7ff60 /gnu/packages/python-science.scm | |
parent | 057957c5498d10f659eb02f7775bf30a2fb475a1 (diff) |
gnu: Add python-ase@3.25.0.
* gnu/packages/python-science.scm (python-ase): New variable.
Change-Id: If868c0e83cf04f9d0c3108304ec77619e28ee2d4
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 291c4e03ce..5d4874671a 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -4836,6 +4836,35 @@ applications.") neuronal models") (license license:bsd-3))) +(define-public python-ase + (package + (name "python-ase") + (version "3.25.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ase" version)) + (sha256 + (base32 "1hk2r5042cs9shqv49w0jvf65wkyq74s6vc5drfz1275kz5ghk1p")))) + (build-system pyproject-build-system) + (arguments + (list #:test-flags + #~(list ;; DeprecationWarning. + "--deselect" + "ase/test/fio/test_espresso.py::test_pw_input_write_nested_flat" + ;; UserWarning. + "--deselect" + "ase/test/fio/test_espresso.py::TestConstraints::test_fix_scaled"))) + (propagated-inputs (list python-matplotlib python-numpy python-scipy)) + (native-inputs (list python-pytest python-pytest-xdist python-setuptools + python-wheel)) + (inputs (list spglib)) + (home-page "https://wiki.fysik.dtu.dk/ase/") + (synopsis "Atomic Simulation Environment") + (description "This package provides a set of tools and Python modules for +setting up, manipulating, running, visualizing and analyzing atomistic +simulations.") + (license license:lgpl2.1+))) (define-public snakemake (package (name "snakemake") |