python313Packages.wallbox: 0.7.0 -> 0.8.0 (#388032)

This commit is contained in:
Robert Schütz
2025-03-07 15:42:12 -08:00
committed by GitHub

View File

@@ -6,19 +6,18 @@
pythonOlder,
requests,
setuptools,
simplejson,
}:
buildPythonPackage rec {
pname = "wallbox";
version = "0.7.0";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-8taZpC1N5ZsVurh10WosZvg7WDmord+PDfhHpRlfqBE=";
hash = "sha256-S1JP7/D3U853fQU3a2pyL+dt/hVLDP3TB82tcGlcXVQ=";
};
build-system = [
@@ -28,7 +27,6 @@ buildPythonPackage rec {
dependencies = [
aenum
requests
simplejson
];
# no tests implemented
@@ -37,7 +35,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "wallbox" ];
meta = with lib; {
description = "Module for interacting with Wallbox EV charger api";
description = "Module for interacting with Wallbox EV charger API";
homepage = "https://github.com/cliviu74/wallbox";
changelog = "https://github.com/cliviu74/wallbox/releases/tag/${version}";
license = licenses.mit;