pythonPackages.lammps-cython: remove not executed tests

This commit is contained in:
Sandro Jäckel 2021-02-16 01:26:09 +01:00
parent 29300a43f6
commit 1da63c109f
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -9,10 +9,7 @@
, pymatgen , pymatgen
, ase , ase
, pytestrunner , pytestrunner
, pytest_4
, pytestcov
, isPy3k , isPy3k
, openssh
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -26,7 +23,6 @@ buildPythonPackage rec {
}; };
buildInputs = [ cython pytestrunner ]; buildInputs = [ cython pytestrunner ];
checkInputs = [ pytest_4 pytestcov openssh ];
propagatedBuildInputs = [ mpi4py pymatgen ase numpy ]; propagatedBuildInputs = [ mpi4py pymatgen ase numpy ];
preBuild = '' preBuild = ''
@ -44,6 +40,8 @@ buildPythonPackage rec {
EOF EOF
''; '';
pythonImportsCheck = [ "lammps" ];
meta = { meta = {
description = "Pythonic Wrapper to LAMMPS using cython"; description = "Pythonic Wrapper to LAMMPS using cython";
homepage = "https://gitlab.com/costrouc/lammps-cython"; homepage = "https://gitlab.com/costrouc/lammps-cython";