From 611619a7712eeadca68ecb4f330e9b25f016dc99 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 20 Jan 2026 23:18:29 +0000 Subject: [PATCH] python3Packages.qcengine: 0.33.0 -> 0.34.0 --- pkgs/development/python-modules/qcengine/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/qcengine/default.nix b/pkgs/development/python-modules/qcengine/default.nix index 4a83cd6af40c..e8fe59a5878a 100644 --- a/pkgs/development/python-modules/qcengine/default.nix +++ b/pkgs/development/python-modules/qcengine/default.nix @@ -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 }; }