python3Packages.voluptuous: 0.15.2 -> 0.16.0

https://github.com/alecthomas/voluptuous/blob/0.16.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:40:48 +01:00
parent 32b55347b8
commit 0280ae27a0
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "voluptuous";
version = "0.15.2";
version = "0.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "alecthomas";
repo = "voluptuous";
tag = version;
hash = "sha256-TGTdYme3ZRM51YFNX/ESFc6+3QpeO/gAXYW6MT73/Ss=";
hash = "sha256-Lph+vNsMm69Oqqk3mX27+BR1PsZNxqiI5Uu8nY8hCBc=";
};
nativeBuildInputs = [ setuptools ];
@@ -30,7 +30,7 @@ buildPythonPackage rec {
description = "Python data validation library";
downloadPage = "https://github.com/alecthomas/voluptuous";
homepage = "http://alecthomas.github.io/voluptuous/";
changelog = "https://github.com/alecthomas/voluptuous/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/alecthomas/voluptuous/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};