aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix
index 4c16010f4af8..cf6bdc38ffaa 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/lammps-cython/default.nix
@@ -9,10 +9,7 @@
, pymatgen
, ase
, pytestrunner
-, pytest_4
-, pytestcov
, isPy3k
-, openssh
}:
buildPythonPackage rec {
@@ -26,7 +23,6 @@ buildPythonPackage rec {
};
buildInputs = [ cython pytestrunner ];
- checkInputs = [ pytest_4 pytestcov openssh ];
propagatedBuildInputs = [ mpi4py pymatgen ase numpy ];
preBuild = ''
@@ -44,10 +40,14 @@ buildPythonPackage rec {
EOF
'';
+ pythonImportsCheck = [ "lammps" ];
+
meta = {
description = "Pythonic Wrapper to LAMMPS using cython";
homepage = "https://gitlab.com/costrouc/lammps-cython";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ costrouc ];
+ # fails import check
+ broken = true;
};
}