2018-07-11 19:23:35 +02:00
|
|
|
{ stdenv, buildPythonPackage, python, fetchPypi, numpy, pyyaml, matplotlib, h5py }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "phonopy";
|
2019-12-29 10:28:08 +01:00
|
|
|
version = "2.4.2";
|
2018-07-11 19:23:35 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-29 10:28:08 +01:00
|
|
|
sha256 = "6e6ce41ce8a51723b94d974adfee032cddce5b9300984dd23b59e101ed0a2861";
|
2018-07-11 19:23:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy pyyaml matplotlib h5py ];
|
2018-09-07 08:41:24 +02:00
|
|
|
|
2018-07-11 19:23:35 +02:00
|
|
|
checkPhase = ''
|
2018-09-07 08:41:24 +02:00
|
|
|
cd test
|
|
|
|
# dynamic structure factor test ocassionally fails do to roundoff
|
|
|
|
# see issue https://github.com/atztogo/phonopy/issues/79
|
|
|
|
rm spectrum/test_dynamic_structure_factor.py
|
2018-07-11 19:23:35 +02:00
|
|
|
${python.interpreter} -m unittest discover -b
|
|
|
|
cd ../..
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A package for phonon calculations at harmonic and quasi-harmonic levels";
|
|
|
|
homepage = https://atztogo.github.io/phonopy/;
|
|
|
|
license = licenses.bsd0;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|