mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 07:49:25 +08:00
12 lines
307 B
Nix
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 ];
|
|
}
|