pythonPackages.dftfit: cleanup, add import check

This commit is contained in:
Sandro Jäckel
2021-02-16 04:00:11 +01:00
parent 499ce18520
commit 0e9e705e4f
@@ -12,11 +12,7 @@
, lammps-cython , lammps-cython
, pymatgen-lammps , pymatgen-lammps
, pytestrunner , pytestrunner
, pytest
, pytestcov
, pytest-benchmark
, isPy3k , isPy3k
, openssh
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@@ -30,13 +26,22 @@ buildPythonPackage rec {
}; };
buildInputs = [ pytestrunner ]; buildInputs = [ pytestrunner ];
checkInputs = [ pytest pytestcov pytest-benchmark openssh ]; propagatedBuildInputs = [
propagatedBuildInputs = [ pymatgen marshmallow pyyaml pygmo pymatgen
pandas scipy numpy scikitlearn marshmallow
lammps-cython pymatgen-lammps ]; pyyaml
pygmo
pandas
scipy
numpy
scikitlearn
lammps-cython
pymatgen-lammps
];
# tests require git lfs download. and is quite large so skip tests # tests require git lfs download. and is quite large so skip tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "dftfit" ];
meta = { meta = {
description = "Ab-Initio Molecular Dynamics Potential Development"; description = "Ab-Initio Molecular Dynamics Potential Development";