python313Packages.packaging: 24.1 -> 24.2

https://github.com/pypa/packaging/blob/24.2/CHANGELOG.rst
This commit is contained in:
Martin Weinelt 2024-11-09 16:57:30 +01:00
parent 40f89c6e0d
commit b1ac443c55
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -15,14 +15,14 @@
let
packaging = buildPythonPackage rec {
pname = "packaging";
version = "24.1";
version = "24.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Am7XLI7T/M5b+JUFciWGmJJ/0dvaEKXpgc3wrDf08AI=";
hash = "sha256-wiim3F6TLTRrxXOTeRCdSeiFPdgiNXHHxbVSYO3AuX8=";
};
nativeBuildInputs = [ flit-core ];