python3Packages.phonopy: 2.8.1 -> 2.9.1

master
Robert T. McGibbon 2021-02-06 12:11:38 -05:00
parent 06d0d8ecfa
commit 07d514af56
1 changed files with 12 additions and 5 deletions

View File

@ -1,19 +1,26 @@
{ lib, buildPythonPackage, python, fetchPypi, numpy, pyyaml, matplotlib, h5py, spglib, pytestCheckHook }:
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pyyaml
, matplotlib
, h5py
, spglib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "phonopy";
version = "2.8.1";
version = "2.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "28864b04adb900597705f1367a100da869af835088bdd13f1693c4382259f128";
sha256 = "1jaizhkb59ixknvc75nrhfq51bh75912q8ay36bxpf4g5hzyhw3a";
};
propagatedBuildInputs = [ numpy pyyaml matplotlib h5py spglib ];
checkInputs = [ pytestCheckHook ];
# flakey due to floating point inaccuracy
disabledTests = [ "test_NaCl" ];
# prevent pytest from importing local directory
preCheck = ''