pythonPackages.sumo: fix tests

This commit is contained in:
Jonathan Ringer 2019-07-04 06:49:46 -07:00
parent 7e2ffea1de
commit 78f9c2d173

View File

@ -1,4 +1,14 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, numpy, scipy, spglib, pymatgen, h5py, matplotlib, seekpath, phonopy }:
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
, h5py
, matplotlib
, numpy
, phonopy
, pymatgen
, pytest
, scipy
, seekpath
, spglib
}:
buildPythonPackage rec {
pname = "sumo";
@ -13,12 +23,20 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ numpy scipy spglib pymatgen h5py matplotlib seekpath phonopy ];
checkInputs = [ pytest ];
checkPhase = ''
pytest .
'';
# tests have type annotations, can only run on 3.5+
doCheck = (!isPy27);
meta = with stdenv.lib; {
description = "Toolkit for plotting and analysis of ab initio solid-state calculation data";
homepage = https://github.com/SMTG-UCL/sumo;
homepage = "https://github.com/SMTG-UCL/sumo";
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}