2020-08-27 23:37:40 +02:00
|
|
|
{ stdenv, buildPythonPackage, python, fetchPypi, numpy, pyyaml, matplotlib, h5py, spglib, pytestCheckHook }:
|
2018-07-11 19:23:35 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "phonopy";
|
2020-08-16 19:31:09 +02:00
|
|
|
version = "2.7.1";
|
2018-07-11 19:23:35 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 19:31:09 +02:00
|
|
|
sha256 = "482c6ff29c058d091ac885e561e28ba3e516ea9e91c44a951cad11f3ae19856c";
|
2018-07-11 19:23:35 +02:00
|
|
|
};
|
|
|
|
|
2020-08-27 23:37:40 +02:00
|
|
|
propagatedBuildInputs = [ numpy pyyaml matplotlib h5py spglib ];
|
2018-09-07 08:41:24 +02:00
|
|
|
|
2020-08-27 23:37:40 +02:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
# flakey due to floating point inaccuracy
|
|
|
|
disabledTests = [ "test_NaCl" ];
|
|
|
|
|
|
|
|
# prevent pytest from importing local directory
|
|
|
|
preCheck = ''
|
|
|
|
rm -r phonopy
|
2018-07-11 19:23:35 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A package for phonon calculations at harmonic and quasi-harmonic levels";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://atztogo.github.io/phonopy/";
|
2018-07-11 19:23:35 +02:00
|
|
|
license = licenses.bsd0;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|