python3Packages.teslemetry-stream: 0.9.2 -> 0.10.0 (#548560)

This commit is contained in:
Fabian Affolter
2026-08-03 15:20:37 +00:00
committed by GitHub
@@ -6,16 +6,16 @@
aiohttp,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "teslemetry-stream";
version = "0.9.2";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Teslemetry";
repo = "python-teslemetry-stream";
tag = "v${version}";
hash = "sha256-NbSeaLIBIQjrNSSoLIMlhcZ9zA1FVg+uTpRxz1/qX1Y=";
tag = "v${finalAttrs.version}";
hash = "sha256-ko9H0qhstD9VnR5707E9BUdJG2/KGGLsUxQpQ8F28y4=";
};
build-system = [ setuptools ];
@@ -27,10 +27,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "teslemetry_stream" ];
meta = {
changelog = "https://github.com/Teslemetry/python-teslemetry-stream/releases/tag/${src.tag}";
changelog = "https://github.com/Teslemetry/python-teslemetry-stream/releases/tag/${finalAttrs.src.tag}";
description = "Python library for the Teslemetry Streaming API";
homepage = "https://github.com/Teslemetry/python-teslemetry-stream";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}
})