2021-02-06 17:11:38 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, numpy
|
|
|
|
, pyyaml
|
|
|
|
, matplotlib
|
|
|
|
, h5py
|
|
|
|
, spglib
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
2018-07-11 18:23:35 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "phonopy";
|
2021-02-06 17:11:38 +00:00
|
|
|
version = "2.9.1";
|
2018-07-11 18:23:35 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-06 17:11:38 +00:00
|
|
|
sha256 = "1jaizhkb59ixknvc75nrhfq51bh75912q8ay36bxpf4g5hzyhw3a";
|
2018-07-11 18:23:35 +01:00
|
|
|
};
|
|
|
|
|
2020-08-27 22:37:40 +01:00
|
|
|
propagatedBuildInputs = [ numpy pyyaml matplotlib h5py spglib ];
|
2018-09-07 07:41:24 +01:00
|
|
|
|
2020-08-27 22:37:40 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
|
|
|
# prevent pytest from importing local directory
|
|
|
|
preCheck = ''
|
|
|
|
rm -r phonopy
|
2018-07-11 18:23:35 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-07-11 18:23:35 +01:00
|
|
|
description = "A package for phonon calculations at harmonic and quasi-harmonic levels";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://atztogo.github.io/phonopy/";
|
2018-07-11 18:23:35 +01:00
|
|
|
license = licenses.bsd0;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|