Unverified Commit e55dc60c authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

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

parents e2f6e5d7 2e0a2738
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -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;