pythonPackages.lammps-cython: init at 0.5.7
- python 3+ - all tests pass - fetchurl since project based in gitlab and to run tests
This commit is contained in:
parent
fb40e62657
commit
dc552ab32e
53
pkgs/development/python-modules/lammps-cython/default.nix
Normal file
53
pkgs/development/python-modules/lammps-cython/default.nix
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchurl
|
||||||
|
, buildPythonPackage
|
||||||
|
, lammps-mpi
|
||||||
|
, mpi
|
||||||
|
, mpi4py
|
||||||
|
, numpy
|
||||||
|
, cython
|
||||||
|
, pymatgen
|
||||||
|
, ase
|
||||||
|
, pytestrunner
|
||||||
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, isPy3k
|
||||||
|
, openssh
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "lammps-cython";
|
||||||
|
version = "0.5.7";
|
||||||
|
disabled = (!isPy3k);
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://gitlab.com/costrouc/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
|
||||||
|
sha256 = "1wj9scmjdl00af13b5ihfccrjpikrdgkzd88ialam1nkxvxi42bl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cython pytestrunner ];
|
||||||
|
checkInputs = [ pytest pytestcov openssh ];
|
||||||
|
propagatedBuildInputs = [ mpi4py pymatgen ase numpy ];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
echo "Creating lammps.cfg file..."
|
||||||
|
cat << EOF > lammps.cfg
|
||||||
|
[lammps]
|
||||||
|
lammps_include_dir = ${lammps-mpi}/include
|
||||||
|
lammps_library_dir = ${lammps-mpi}/lib
|
||||||
|
lammps_library = lammps_mpi
|
||||||
|
|
||||||
|
[mpi]
|
||||||
|
mpi_include_dir = ${mpi}/include
|
||||||
|
mpi_library_dir = ${mpi}/lib
|
||||||
|
mpi_library = mpi
|
||||||
|
EOF
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Pythonic Wrapper to LAMMPS using cython";
|
||||||
|
homepage = https://gitlab.com/costrouc/lammps-cython;
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -308,6 +308,10 @@ in {
|
|||||||
|
|
||||||
jira = callPackage ../development/python-modules/jira { };
|
jira = callPackage ../development/python-modules/jira { };
|
||||||
|
|
||||||
|
lammps-cython = callPackage ../development/python-modules/lammps-cython {
|
||||||
|
mpi = pkgs.openmpi;
|
||||||
|
};
|
||||||
|
|
||||||
lmtpd = callPackage ../development/python-modules/lmtpd { };
|
lmtpd = callPackage ../development/python-modules/lmtpd { };
|
||||||
|
|
||||||
logster = callPackage ../development/python-modules/logster { };
|
logster = callPackage ../development/python-modules/logster { };
|
||||||
|
Loading…
Reference in New Issue
Block a user