Files
nixos/packages/py4vasp.nix
2024-12-15 15:43:08 +08:00

12 lines
307 B
Nix

{
src, buildPythonPackage,
poetry-core, numpy, h5py, pandas, ase, plotly, kaleido, ipython, scipy, nglview
}: buildPythonPackage
{
name = "py4vasp";
pyproject = true;
inherit src;
build-system = [ poetry-core ];
dependencies = [ numpy h5py pandas ase plotly kaleido ipython scipy nglview ];
}