Skip to content

Commit

Permalink
python312Packages.qcelemental: 0.28.0 -> 0.29.0 (#374558)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Jan 18, 2025
2 parents 3010e3c + e569aaa commit d94dc24
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions pkgs/development/python-modules/qcelemental/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,50 @@
lib,
fetchPypi,
poetry-core,
ipykernel,
networkx,
numpy,
packaging,
pint,
pydantic,
pytestCheckHook,
pythonOlder,
scipy,
}:

buildPythonPackage rec {
pname = "qcelemental";
version = "0.28.0";

version = "0.29.0";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-2pb924jBcB+BKyU2mmoWnTXy1URsN8YuhgSMsPGxaKI=";
hash = "sha256-v2NO5lLn2V6QbikZiVEyJCM7HXBcJq/qyG5FHzFrPAQ=";
};

nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];

propagatedBuildInputs = [
networkx
dependencies = [
numpy
packaging
pint
pydantic
];

nativeCheckInputs = [ pytestCheckHook ];
optional-dependencies = {
viz = [
# TODO: nglview
ipykernel
];
align = [
networkx
scipy
];
};

nativeCheckInputs = [ pytestCheckHook ] ++ lib.flatten (lib.attrValues optional-dependencies);

pythonImportsCheck = [ "qcelemental" ];

Expand Down

0 comments on commit d94dc24

Please sign in to comment.