about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/qcelemental/default.nix
blob: 3a3e9bced050937918b0bcf406fb67801ac9c0de (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
{ buildPythonPackage, lib, fetchPypi, numpy
, pydantic, pint,  networkx, pytestrunner, pytestcov, pytest
} :

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

  checkInputs = [ pytestrunner pytestcov pytest ];
  propagatedBuildInputs = [ numpy pydantic pint networkx ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "1b3c78fxbpnddrm1fnbvv4x2840jcfjg2l5cb5w4p38vzksiv238";
  };

  doCheck = true;

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