depot/third_party/nixpkgs/pkgs/development/python-modules/qcelemental/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

47 lines
860 B
Nix

{ stdenv
, buildPythonPackage
, lib
, fetchPypi
, networkx
, numpy
, pint
, pydantic
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "qcelemental";
version = "0.25.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-4+DlP+BH0UdWcYRBBApdc3E18L2zPvsdY6GTW5WCGnQ=";
};
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 = "http://docs.qcarchive.molssi.org/projects/qcelemental/";
license = licenses.bsd3;
maintainers = with maintainers; [ sheepforce ];
};
}