Merge pull request #112172 from rmcgibbo/phononpy

python3Packages.phonopy: 2.8.1 -> 2.9.1
This commit is contained in:
Sandro 2021-02-07 17:15:39 +01:00 committed by GitHub
commit 4bf8101a12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = ''