2021-05-28 09:39:13 +00:00
|
|
|
{ buildPythonPackage, lib, fetchPypi, pyyaml, qcelemental, pydantic
|
2021-07-24 12:14:16 +00:00
|
|
|
, py-cpuinfo, psutil, pytest-runner, pytest, pytest-cov
|
2021-05-28 09:39:13 +00:00
|
|
|
} :
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "qcengine";
|
2021-10-09 14:59:57 +00:00
|
|
|
version = "0.20.1";
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
2021-07-24 12:14:16 +00:00
|
|
|
pytest-runner
|
|
|
|
pytest-cov
|
2021-05-28 09:39:13 +00:00
|
|
|
pytest
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pyyaml
|
|
|
|
qcelemental
|
|
|
|
pydantic
|
|
|
|
py-cpuinfo
|
|
|
|
psutil
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-09 14:59:57 +00:00
|
|
|
sha256 = "hZxE7b0bOx/B8Kz4cgBC7wV23OikRxwrdZ4UQ8G/yhg=";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|