depot/third_party/nixpkgs/pkgs/development/python-modules/qcelemental/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

49 lines
987 B
Nix

{
stdenv,
buildPythonPackage,
lib,
fetchPypi,
poetry-core,
networkx,
numpy,
pint,
pydantic,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "qcelemental";
version = "0.27.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-dlcfIUKAg6yc4S3RXVJ1sKM29E1ZvHY82kjx1CM8/08=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
networkx
numpy
pint
pydantic
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "qcelemental" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Periodic table, physical constants and molecule parsing for quantum chemistry";
homepage = "https://github.com/MolSSI/QCElemental";
changelog = "https://github.com/MolSSI/QCElemental/blob/v${version}/docs/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ sheepforce ];
};
}