Unverified Commit 6ea79384 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.denonavr: 1.2.0 -> 1.3.1 (#486852)

parents 62fb1065 5b814bf4
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
{
  lib,
  async-timeout,
  asyncstdlib,
  attrs,
  buildPythonPackage,
@@ -13,20 +12,19 @@
  pytest-httpx,
  pytest-timeout,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "denonavr";
  version = "1.2.0";
  version = "1.3.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ol-iver";
    repo = "denonavr";
    tag = version;
    hash = "sha256-/GhlSZhl4VAl0em3QLolSRS0wZQeOhhF+B/91ohqVPw=";
    tag = finalAttrs.version;
    hash = "sha256-GrcTNnGanyYwcRIqzh5gToe2Z0E5KM2V7Ph/eBFoljA=";
  };

  build-system = [ setuptools ];
@@ -38,8 +36,7 @@ buildPythonPackage rec {
    ftfy
    httpx
    netifaces
  ]
  ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
  ];

  nativeCheckInputs = [
    pytest-asyncio
@@ -53,8 +50,8 @@ buildPythonPackage rec {
  meta = {
    description = "Automation Library for Denon AVR receivers";
    homepage = "https://github.com/ol-iver/denonavr";
    changelog = "https://github.com/ol-iver/denonavr/releases/tag/${src.tag}";
    changelog = "https://github.com/ol-iver/denonavr/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}
})