python311Packages.wallbox: add changelog to meta
- add format - update sorting
This commit is contained in:
parent
1e0a13349f
commit
5567510f9e
1 changed files with 8 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, aenum
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, requests
|
||||
, simplejson
|
||||
}:
|
||||
|
@ -10,6 +10,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "wallbox";
|
||||
version = "0.4.14";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue