python3Packages.volvocarsapi: init at 0.4.1 (#432415)

This commit is contained in:
Martin Weinelt
2025-08-10 15:04:33 +02:00
committed by GitHub
3 changed files with 53 additions and 1 deletions
@@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
aiohttp,
yarl,
hatchling,
}:
buildPythonPackage rec {
pname = "volvocarsapi";
version = "0.4.1";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "thomasddn";
repo = "volvo-cars-api";
tag = "v${version}";
hash = "sha256-YMrhVxDm8Cp8vbMVtdq6yoaAu8nUB7L2YG+LSkvMdZs=";
};
build-system = [
hatchling
];
dependencies = [
aiohttp
yarl
];
# Package has no tests
doCheck = false;
pythonImportsCheck = [
"volvocarsapi"
];
meta = {
description = "Python client for the Volvo Cars API";
homepage = "https://github.com/thomasddn/volvo-cars-api";
changelog = "https://github.com/thomasddn/volvo-cars-api/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -6431,7 +6431,8 @@
];
"volvo" =
ps: with ps; [
]; # missing inputs: volvocarsapi
volvocarsapi
];
"volvooncall" =
ps: with ps; [
volvooncall
@@ -7767,6 +7768,7 @@
"voicerss"
"voip"
"volumio"
"volvo"
"volvooncall"
"vulcan"
"vultr"
+2
View File
@@ -19446,6 +19446,8 @@ self: super: with self; {
voluptuous-stubs = callPackage ../development/python-modules/voluptuous-stubs { };
volvocarsapi = callPackage ../development/python-modules/volvocarsapi { };
volvooncall = callPackage ../development/python-modules/volvooncall { };
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { };