Files
nixpkgs/pkgs/development/python-modules/phonopy/default.nix
T

30 lines
892 B
Nix
Raw Normal View History

2018-07-11 18:23:35 +01:00
{ stdenv, buildPythonPackage, python, fetchPypi, numpy, pyyaml, matplotlib, h5py }:
buildPythonPackage rec {
pname = "phonopy";
2018-08-13 09:28:57 +02:00
version = "1.13.2.107";
2018-07-11 18:23:35 +01:00
src = fetchPypi {
inherit pname version;
2018-08-13 09:28:57 +02:00
sha256 = "72f06728c98b9a7ab3db2d6fa2ae5d029029fbcff4e8fcfbc29f1e2620a0f905";
2018-07-11 18:23:35 +01:00
};
propagatedBuildInputs = [ numpy pyyaml matplotlib h5py ];
2018-09-07 02:41:24 -04:00
2018-07-11 18:23:35 +01:00
checkPhase = ''
2018-09-07 02:41:24 -04: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 18:23:35 +01: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 ];
};
}