nixpkgs/pkgs/development/python-modules/qcengine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
859 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, psutil
, py-cpuinfo
, pydantic
, pytestCheckHook
, pythonOlder
, pyyaml
, qcelemental
}:
2021-05-26 15:07:40 +00:00
buildPythonPackage rec {
pname = "qcengine";
2022-12-07 13:29:27 +00:00
version = "0.26.0";
format = "setuptools";
disabled = pythonOlder "3.7";
2021-05-26 15:07:40 +00:00
src = fetchPypi {
inherit pname version;
2022-12-07 13:29:27 +00:00
hash = "sha256-jBA3exH/qzEaKZeumvgKD0tKnDptZdlv1KykyUHs8Bg=";
};
2021-05-26 15:07:40 +00:00
propagatedBuildInputs = [
psutil
py-cpuinfo
pydantic
2021-05-26 15:07:40 +00:00
pyyaml
qcelemental
];
checkInputs = [
pytestCheckHook
];
2021-05-26 15:07:40 +00:00
pythonImportsCheck = [
"qcengine"
];
2021-05-26 15:07:40 +00:00
meta = with lib; {
description = "Quantum chemistry program executor and IO standardizer (QCSchema) for quantum chemistry";
homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/";
2021-05-26 15:07:40 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ sheepforce ];
2021-05-26 15:07:40 +00:00
};
}