python3Packages.pyvlx: 0.2.30 -> 0.2.32

Diff: https://github.com/Julius2342/pyvlx/compare/0.2.30...0.2.32

Changelog: https://github.com/Julius2342/pyvlx/releases/tag/0.2.32
This commit is contained in:
Robert Schütz
2026-03-30 00:17:45 -07:00
parent 218caa0caf
commit 3db852706f
@@ -1,40 +1,35 @@
{
lib,
buildPythonPackage,
deprecated,
fetchFromGitHub,
pytestCheckHook,
pyyaml,
setuptools,
setuptools-scm,
typing-extensions,
zeroconf,
}:
buildPythonPackage (finalAttrs: {
pname = "pyvlx";
version = "0.2.30";
version = "0.2.32";
pyproject = true;
src = fetchFromGitHub {
owner = "Julius2342";
repo = "pyvlx";
tag = finalAttrs.version;
hash = "sha256-owrWYBAb/5JAangGwt56gdjJf99C3i04IiKAh1P/MYY=";
hash = "sha256-ArNWXvYZ/eZWPUvV8z/+6WsAcm5MTnKblMrUFj51JhM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools-scm>=8.0" "setuptools-scm"
'';
build-system = [
setuptools
setuptools-scm
];
dependencies = [
deprecated
pyyaml
typing-extensions
zeroconf
];