Unverified Commit 3df96ba3 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.actron-neo-api: 0.5.5 -> 0.5.11 (#515738)

parents 2f8de886 9fa8e635
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
{
  aiohttp,
  aiomqtt,
  buildPythonPackage,
  fetchFromGitHub,
  hatch-vcs,
  hatchling,
  lib,
  pydantic,
  pytest-asyncio,
  pytestCheckHook,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "actron-neo-api";
  version = "0.5.5";
  version = "0.5.11";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "kclif9";
    repo = "actronneoapi";
    tag = "v${version}";
    hash = "sha256-bBPhwiJQYDBEPZKA1Cq94X9LYAmBkOWCI+4afrQntmw=";
    hash = "sha256-1cXYMYS8quBVtUbv+Wrcvm13I47VuSKTHwwlQKvGcRI=";
  };

  build-system = [
    setuptools
    setuptools-scm
    hatch-vcs
    hatchling
  ];

  dependencies = [
    aiohttp
    aiomqtt
    pydantic
  ];