Merge pull request #217723 from fabaff/denonavr-bump

python310Packages.denonavr: 0.11.0 -> 0.11.1
This commit is contained in:
Fabian Affolter 2023-02-23 09:31:30 +01:00 committed by GitHub
commit c2c60d0c6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ 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 ];