Unverified Commit 87cd614a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.nrgkick-api: 1.5.0 -> 1.7.0 (#484946)

parents 00366f53 6020924d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -10,16 +10,16 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "nrgkick-api";
  version = "1.5.0";
  version = "1.7.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "andijakl";
    repo = "nrgkick-api";
    tag = "v${version}";
    hash = "sha256-WtSL9fUJF2xsX53epFcY++KwjnAs3YiKHDb2a5x4tfE=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-q9mLX+DjNSyvjJ6hNPZckaHTNNelOsOlOe9XeVqutaU=";
  };

  build-system = [ setuptools ];
@@ -38,8 +38,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python client for NRGkick Gen2 EV charger local REST API";
    homepage = "https://github.com/andijakl/nrgkick-api";
    changelog = "https://github.com/andijakl/nrgkick-api/releases/tag/${src.tag}";
    changelog = "https://github.com/andijakl/nrgkick-api/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})