python3Packages.pyyardian: 1.2.0 -> 1.3.3 (#524372)

This commit is contained in:
Fabian Affolter
2026-05-26 10:22:16 +00:00
committed by GitHub
@@ -7,24 +7,21 @@
wheel,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyyardian";
version = "1.2.0";
version = "1.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "h3l1o5";
repo = "pyyardian";
tag = version;
hash = "sha256-JBb62pFDuVcXIGRc6UOp5/ciUtbGm4XnKZjt1icF/jQ=";
tag = finalAttrs.version;
hash = "sha256-LOHE8vGrT25sgjhcNarMOi0hzpPpHjVIeVq7CezYicY=";
};
nativeBuildInputs = [
setuptools
wheel
];
build-system = [ setuptools ];
propagatedBuildInputs = [ aiohttp ];
dependencies = [ aiohttp ];
# Tests require network access
doCheck = false;
@@ -34,7 +31,8 @@ buildPythonPackage rec {
meta = {
description = "Module for interacting with the Yardian irrigation controller";
homepage = "https://github.com/h3l1o5/pyyardian";
changelog = "https://github.com/aeon-matrix/pyyardian/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})