python3Packages.atomman: 1.4.3 -> 1.4.4

This commit is contained in:
Fabian Affolter 2022-04-01 22:53:08 +02:00
parent e07896c6c4
commit fbdd16809b

View file

@ -1,4 +1,5 @@
{ lib { lib
, ase
, buildPythonPackage , buildPythonPackage
, cython , cython
, datamodeldict , datamodeldict
@ -7,17 +8,19 @@
, numericalunits , numericalunits
, numpy , numpy
, pandas , pandas
, phonopy
, potentials , potentials
, pymatgen
, pytest , pytest
, pythonOlder , pythonOlder
, requests
, scipy , scipy
, toolz , toolz
, xmltodict , xmltodict
, python
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.4.3"; version = "1.4.4";
pname = "atomman"; pname = "atomman";
format = "setuptools"; format = "setuptools";
@ -27,7 +30,7 @@ buildPythonPackage rec {
owner = "usnistgov"; owner = "usnistgov";
repo = "atomman"; repo = "atomman";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-is47O59Pjrh9tPC1Y2+DVVcHbxmcjUOFOVGnNHuURoM="; hash = "sha256-iLAB0KMtrTCyGpx+81QfHDPVDhq8OA6CDL/ipVRpyo0=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -38,19 +41,24 @@ buildPythonPackage rec {
numpy numpy
pandas pandas
potentials potentials
requests
scipy scipy
toolz toolz
xmltodict xmltodict
]; ];
checkInputs = [ checkInputs = [
ase
phonopy
pymatgen
pytest pytest
]; ];
checkPhase = '' checkPhase = ''
# pytestCheckHook doesn't work # pytestCheckHook doesn't work
py.test tests -k "not test_rootdir and not test_version \ pytest tests -k "not test_rootdir and not test_version \
and not test_atomic_mass and not imageflags" and not test_atomic_mass and not imageflags" \
--ignore tests/plot/test_interpolate.py
''; '';
pythonImportsCheck = [ pythonImportsCheck = [