Unverified Commit 9ed693b2 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.elkm1-lib: 2.2.13 -> 2.2.14 (#515151)

parents 13c04569 ed9e5129
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -8,23 +8,21 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "elkm1-lib";
  version = "2.2.13";
  version = "2.2.14";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "gwww";
    repo = "elkm1";
    tag = version;
    hash = "sha256-Z8OfaRggVkGzX7d/O8a7L110ophj3sKD2x5JskusUe8=";
    tag = finalAttrs.version;
    hash = "sha256-lejeRHteVMO7qz8qMPCG5d8V/rj550FL+WuogM/Lcbw=";
  };

  build-system = [ hatchling ];

  dependencies = [
    pyserial-asyncio-fast
  ];
  dependencies = [ pyserial-asyncio-fast ];

  nativeCheckInputs = [
    pytest-asyncio
@@ -34,10 +32,10 @@ buildPythonPackage rec {
  pythonImportsCheck = [ "elkm1_lib" ];

  meta = {
    description = "Python module for interacting with ElkM1 alarm/automation panel";
    description = "Module for interacting with ElkM1 alarm/automation panel";
    homepage = "https://github.com/gwww/elkm1";
    changelog = "https://github.com/gwww/elkm1/blob/${version}/CHANGELOG.md";
    changelog = "https://github.com/gwww/elkm1/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})