mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
python3Packages.phonopy: 2.8.1 -> 2.9.1
This commit is contained in:
parent
06d0d8ecfa
commit
07d514af56
@ -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 = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user