python3Packages.oasatelematics: 0.3 -> 0.4

Changelog: https://github.com/panosmz/oasatelematics/releases/tag/v0.4
This commit is contained in:
Fabian Affolter
2026-03-31 20:07:17 +02:00
parent 8ab7c23af4
commit 563669b575
@@ -2,32 +2,36 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
requests,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "oasatelematics";
version = "0.3";
format = "setuptools";
version = "0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "panosmz";
repo = "oasatelematics";
rev = "v${version}";
hash = "sha256-3O7XbNVj1S3ZwheklEhm0ivw16Tj7drML/xYC9383Kg=";
tag = "v${finalAttrs.version}";
hash = "sha256-pqjzvLeVGW5rC3lK/9WnYdCLyF1fM7GGwzEG5h2lKPA=";
};
propagatedBuildInputs = [ requests ];
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
dependencies = [ requests ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "oasatelematics" ];
meta = {
description = "Python wrapper for the OASA Telematics API";
homepage = "https://github.com/panosmz/oasatelematics";
changelog = "https://github.com/panosmz/oasatelematics/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}
})