Unverified Commit 851c8b9a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.denonavr: 1.0.1 -> 1.1.0 (#406227)

parents 6d0d3850 22de1473
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -10,25 +10,23 @@
  httpx,
  netifaces,
  pytest-asyncio,
  pytestCheckHook,
  pytest-httpx,
  pytest-timeout,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "denonavr";
  version = "1.0.1";
  version = "1.1.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "ol-iver";
    repo = "denonavr";
    tag = version;
    hash = "sha256-9nY1z6CX8uha/m3OOUyadrKmpbUsgL16CB2ySElOTck=";
    hash = "sha256-6aEivDQQlLOGURUvaGxHHALgE9aA0r2dPvq8S0XFcAg=";
  };

  pythonRelaxDeps = [ "defusedxml" ];
@@ -56,7 +54,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Automation Library for Denon AVR receivers";
    homepage = "https://github.com/ol-iver/denonavr";
    changelog = "https://github.com/ol-iver/denonavr/releases/tag/${version}";
    changelog = "https://github.com/ol-iver/denonavr/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };