Commit e5d479b2 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent fd6ea004
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, ftfy
, httpx
, netifaces
, pytest-asyncio
@@ -17,16 +18,16 @@

buildPythonPackage rec {
  pname = "denonavr";
  version = "0.11.4";
  format = "pyproject";
  version = "0.11.6";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "ol-iver";
    repo = pname;
    repo = "denonavr";
    rev = "refs/tags/${version}";
    hash = "sha256-0+BjakGGnCbmiSHSipRifPkasfP1vvAWGvzyRufpsOk=";
    hash = "sha256-VxoRK1qeGrIunsiCzeZJUHxW/sxk+PFpntInL+G/yI8=";
  };

  nativeBuildInputs = [
@@ -37,6 +38,7 @@ buildPythonPackage rec {
    asyncstdlib
    attrs
    defusedxml
    ftfy
    httpx
    netifaces
  ] ++ lib.optionals (pythonOlder "3.11") [