2022-06-16 17:23:12 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage, lib, fetchPypi
|
2021-12-06 16:07:01 +00:00
|
|
|
, networkx
|
|
|
|
, numpy
|
|
|
|
, pint
|
|
|
|
, pydantic
|
|
|
|
, pytestCheckHook
|
2021-05-28 09:39:13 +00:00
|
|
|
} :
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "qcelemental";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "0.25.0";
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-v1yu6yBEtgVsheku/8YaIaXrsVgMzcFlWAuySPhYgyQ=";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
pydantic
|
|
|
|
pint
|
|
|
|
networkx
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2021-06-04 09:07:49 +00:00
|
|
|
description = "Periodic table, physical constants, and molecule parsing for quantum chemistry";
|
2021-05-28 09:39:13 +00:00
|
|
|
homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.sheepforce ];
|
|
|
|
};
|
|
|
|
}
|