python3Packages.aiomusiccast: fix version in aiomusiccast/__init__.py

This commit is contained in:
Robert Schütz
2026-06-26 14:36:52 -07:00
parent f4b20637d7
commit 528e62cee4

View File

@@ -19,8 +19,8 @@ buildPythonPackage rec {
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace '"0.0.0"' '"${version}"'
substituteInPlace aiomusiccast/__init__.py \
--replace-fail '__version__ = "0.0.0"' '__version__ = "${version}"'
'';
build-system = [ hatchling ];