python3Packages.qcengine: 0.33.0 -> 0.34.0

This commit is contained in:
R. Ryantm
2026-01-23 10:30:16 +01:00
committed by Phillip Seeber
parent 75fa16d399
commit 611619a771
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
ipykernel,
msgpack,
networkx,
@@ -19,12 +20,12 @@
buildPythonPackage rec {
pname = "qcengine";
version = "0.33.0";
version = "0.34.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Ute8puO2qc679ttZgzQRnVO8OuBmYnqLT3y7faHpRgA=";
hash = "sha256-VKULy45bYn5TmxU7TbOVK98r0pRMWAwissmgx0Ee/8w=";
};
build-system = [ setuptools ];
@@ -60,5 +61,6 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sheepforce ];
mainProgram = "qcengine";
broken = pythonAtLeast "3.14"; # https://github.com/MolSSI/QCEngine/issues/481
};
}