python3Packages.idna: 3.14 -> 3.15

Diff: https://github.com/kjd/idna/compare/v3.14...v3.15

Changelog: https://github.com/kjd/idna/releases/tag/v3.15
This commit is contained in:
Robert Schütz 2026-05-18 18:37:01 -07:00 committed by Martin Weinelt
commit 4f399b1dae

View file

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "idna";
version = "3.14";
version = "3.15";
pyproject = true;
src = fetchFromGitHub {
owner = "kjd";
repo = "idna";
tag = "v${version}";
hash = "sha256-cCyJsZc7+DpYQjS3nOfahrUcyFX2WtmmBKw8trZlELU=";
hash = "sha256-z3Nd834inihGzquCAmejUQvRcM0Yn/VmMcWQP3oh4ak=";
};
build-system = [ flit-core ];