Merge pull request #259235 from sheepforce/qcelemental

qcelemental: 0.25.1 -> 0.26.0

authored by

markuskowa and committed by
GitHub
d943caed e462c917

+7 -3
+7 -3
pkgs/development/python-modules/qcelemental/default.nix
··· 6 6 , numpy 7 7 , pint 8 8 , pydantic 9 + , poetry-core 9 10 , pytestCheckHook 10 11 , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "qcelemental"; 15 - version = "0.25.1"; 16 - format = "setuptools"; 16 + version = "0.26.0"; 17 + 18 + pyproject = true; 17 19 18 20 disabled = pythonOlder "3.7"; 19 21 20 22 src = fetchPypi { 21 23 inherit pname version; 22 - hash = "sha256-4+DlP+BH0UdWcYRBBApdc3E18L2zPvsdY6GTW5WCGnQ="; 24 + hash = "sha256-oU6FEM2/2mRe8UYcGv0C77WZMRcz27pfg/zR1haKbd0="; 23 25 }; 26 + 27 + nativeBuildInputs = [ poetry-core ]; 24 28 25 29 propagatedBuildInputs = [ 26 30 networkx