depot/third_party/nixpkgs/pkgs/development/python-modules/qcelemental/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +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.28.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2pb924jBcB+BKyU2mmoWnTXy1URsN8YuhgSMsPGxaKI=";
};
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 ];
};
}