python3Packages.phonopy: 2.8.1 -> 2.9.1

This commit is contained in:
Robert T. McGibbon 2021-02-06 12:11:38 -05:00
parent 06d0d8ecfa
commit 07d514af56

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 { buildPythonPackage rec {
pname = "phonopy"; pname = "phonopy";
version = "2.8.1"; version = "2.9.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "28864b04adb900597705f1367a100da869af835088bdd13f1693c4382259f128"; sha256 = "1jaizhkb59ixknvc75nrhfq51bh75912q8ay36bxpf4g5hzyhw3a";
}; };
propagatedBuildInputs = [ numpy pyyaml matplotlib h5py spglib ]; propagatedBuildInputs = [ numpy pyyaml matplotlib h5py spglib ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
# flakey due to floating point inaccuracy
disabledTests = [ "test_NaCl" ];
# prevent pytest from importing local directory # prevent pytest from importing local directory
preCheck = '' preCheck = ''