Commit 849cb51e authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.denonavr: 0.11.0 -> 0.11.1

parent f5dad404
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
{ lib
, async-timeout
, asyncstdlib
, attrs
, buildPythonPackage
@@ -15,16 +16,16 @@

buildPythonPackage rec {
  pname = "denonavr";
  version = "0.11.0";
  version = "0.11.1";
  format = "setuptools";

  disabled = pythonOlder "3.6";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "scarface-4711";
    owner = "ol-iver";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-0zclIoEGKjA8Ro8k+HYX/d77U+ntQZv0vq6gC4Sa7zE=";
    hash = "sha256-iYekqqhrcN1rbclFVSbJSF5ky19WsBLKlTxAa2HULqY=";
  };

  propagatedBuildInputs = [
@@ -33,6 +34,8 @@ buildPythonPackage rec {
    defusedxml
    httpx
    netifaces
  ] ++ lib.optionals (pythonOlder "3.11") [
    async-timeout
  ];

  nativeCheckInputs = [
@@ -48,7 +51,7 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Automation Library for Denon AVR receivers";
    homepage = "https://github.com/scarface-4711/denonavr";
    homepage = "https://github.com/ol-iver/denonavr";
    changelog = "https://github.com/ol-iver/denonavr/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ colemickens ];