about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dftfit/default.nix
blob: 778b8c3d9843f706d4f3debc698d926e10d7c0e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ lib
, fetchPypi
, buildPythonPackage
, pymatgen
, marshmallow
, pyyaml
, pygmo
, pandas
, scipy
, numpy
, scikit-learn
, lammps-cython
, pymatgen-lammps
, pytestrunner
, isPy3k
}:

buildPythonPackage rec {
  pname = "dftfit";
  version = "0.5.1";
  disabled = (!isPy3k);

  src = fetchPypi {
    inherit pname version;
    sha256 = "4dcbde48948835dcf2d49d6628c9df5747a8ec505d517e374b8d6c7fe95892df";
  };

  buildInputs = [ pytestrunner ];
  propagatedBuildInputs = [
    pymatgen
    marshmallow
    pyyaml
    pygmo
    pandas
    scipy
    numpy
    scikit-learn
    lammps-cython
    pymatgen-lammps
  ];

  # tests require git lfs download. and is quite large so skip tests
  doCheck = false;
  pythonImportsCheck = [ "dftfit" ];

  meta = {
    description = "Ab-Initio Molecular Dynamics Potential Development";
    homepage = "https://gitlab.com/costrouc/dftfit";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ costrouc ];
  };
}