lol

python312Packages.openpyxl: 3.1.2 -> 3.1.5

Diff: https://foss.heptapod.net/openpyxl/openpyxl/-/compare/refs/tags/3.1.2...3.1.5

Changelog: https://foss.heptapod.net/openpyxl/openpyxl/-/blob/3.1.5/doc/changes.rst

authored by

Fabian Affolter and committed by
Martin Weinelt
5bc895ae 4934e758

+5 -4
+5 -4
pkgs/development/python-modules/openpyxl/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "openpyxl"; 17 - version = "3.1.2"; 17 + version = "3.1.5"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 24 24 owner = "openpyxl"; 25 25 repo = "openpyxl"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-SWRbjA83AOLrfe6on2CSb64pH5EWXkfyYcTqWJNBEP0="; 27 + hash = "sha256-vp+TIWcHCAWlDaBcmC7w/kV7DZTZpa6463NusaJmqKo="; 28 28 }; 29 29 30 - nativeBuildInputs = [ setuptools ]; 30 + build-system = [ setuptools ]; 31 31 32 - propagatedBuildInputs = [ et-xmlfile ]; 32 + dependencies = [ et-xmlfile ]; 33 33 34 34 nativeCheckInputs = [ 35 35 lxml ··· 42 42 "-W" 43 43 "ignore::DeprecationWarning" 44 44 ]; 45 + 45 46 disabledTests = 46 47 [ 47 48 # Tests broken since lxml 2.12; https://foss.heptapod.net/openpyxl/openpyxl/-/issues/2116