python3Packages.pybravia: 0.3.4 -> 0.4.1 (#477717)

This commit is contained in:
dotlambda
2026-01-07 12:26:15 +00:00
committed by GitHub
@@ -3,27 +3,24 @@
aiohttp,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pythonOlder,
hatchling,
}:
buildPythonPackage rec {
pname = "pybravia";
version = "0.3.4";
format = "pyproject";
disabled = pythonOlder "3.8";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Drafteed";
repo = "pybravia";
tag = "v${version}";
hash = "sha256-1LfYEVclRneU3eD52kvzjLYyGdzYSWVDQ5EADOviglw=";
hash = "sha256-VNdjdNmWcl8s1jRlA40DHlku3CPL59nJ4pZklZ452FU=";
};
nativeBuildInputs = [ poetry-core ];
build-system = [ hatchling ];
propagatedBuildInputs = [ aiohttp ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
@@ -33,7 +30,7 @@ buildPythonPackage rec {
meta = {
description = "Library for remote control of Sony Bravia TVs 2013 and newer";
homepage = "https://github.com/Drafteed/pybravia";
changelog = "https://github.com/Drafteed/pybravia/releases/tag/v${version}";
changelog = "https://github.com/Drafteed/pybravia/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};