Merge pull request #236042 from fabaff/wallbox-bump

python311Packages.wallbox: 0.4.12 -> 0.4.14
This commit is contained in:
Fabian Affolter
2023-06-06 09:27:09 +02:00
committed by GitHub
@@ -1,21 +1,22 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, aenum
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
, simplejson
}:
buildPythonPackage rec {
pname = "wallbox";
version = "0.4.12";
version = "0.4.14";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/RM1tqtGBCUa1fcqh5yvVQMNzaEqpAUPonciEIE6lC4=";
hash = "sha256-HKlq5DPG3HD9i9LLTJdlzEFim+2hBdSfKl43BojhEf8=";
};
propagatedBuildInputs = [
@@ -27,11 +28,14 @@ buildPythonPackage rec {
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "wallbox" ];
pythonImportsCheck = [
"wallbox"
];
meta = with lib; {
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;
maintainers = with maintainers; [ dotlambda ];
};