summary refs log tree commit diff
path: root/pkgs/development/python-modules/qcelemental/default.nix
blob: c5e9c92010ebbb882a19ed22bccbcda677c0ab17 (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
{ stdenv
, buildPythonPackage, lib, fetchPypi
, networkx
, numpy
, pint
, pydantic
, pytestCheckHook
} :

buildPythonPackage rec {
  pname = "qcelemental";
  version = "0.24.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-XcsR89tu26EG5AcXqmndkESLGWZ8eKmTkjaLziosawE=";
  };

  propagatedBuildInputs = [
    numpy
    pydantic
    pint
    networkx
  ];

  checkInputs = [ pytestCheckHook ];

  doCheck = true;

  meta = with lib; {
    broken = stdenv.isDarwin;
    description = "Periodic table, physical constants, and molecule parsing for quantum chemistry";
    homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/";
    license = licenses.bsd3;
    maintainers = [ maintainers.sheepforce ];
  };
}