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

38 lines
839 B
Nix
Raw Normal View History

2021-05-26 15:07:40 +00:00
{ buildPythonPackage, lib, fetchPypi, pyyaml, qcelemental, pydantic
, py-cpuinfo, psutil, pytest-runner, pytest, pytest-cov
2021-05-26 15:07:40 +00:00
} :
buildPythonPackage rec {
pname = "qcengine";
version = "0.19.0";
checkInputs = [
pytest-runner
pytest-cov
2021-05-26 15:07:40 +00:00
pytest
];
propagatedBuildInputs = [
pyyaml
qcelemental
pydantic
py-cpuinfo
psutil
];
src = fetchPypi {
inherit pname version;
sha256 = "0lz9r0fh31mcixdhayiwfc69cp8if9b3nkrk7gxdrb6vhbfrxhij";
};
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 ];
};
}