summary refs log tree commit diff
path: root/pkgs/development/python-modules/qcengine/default.nix
blob: 847eeb23c9a11be297eab9bd328be66d208ae430 (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
{ buildPythonPackage, lib, fetchPypi, pyyaml, qcelemental, pydantic
, py-cpuinfo, psutil, pytestrunner, pytest, pytestcov
} :

buildPythonPackage rec {
  pname = "qcengine";
  version = "0.19.0";

  checkInputs = [
    pytestrunner
    pytestcov
    pytest
  ];

  propagatedBuildInputs = [
    pyyaml
    qcelemental
    pydantic
    py-cpuinfo
    psutil
  ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "0lz9r0fh31mcixdhayiwfc69cp8if9b3nkrk7gxdrb6vhbfrxhij";
  };

  doCheck = true;

  meta = with lib; {
    description = "Quantum chemistry program executor and IO standardizer (QCSchema) for quantum chemistry";
    homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/";
    license = licenses.bsd3;
    platforms = [ "x86_64-linux" ];
    maintainers = [ maintainers.sheepforce ];
  };
}