diff --git a/pkgs/development/python-modules/pyyardian/default.nix b/pkgs/development/python-modules/pyyardian/default.nix index f17742b1be67..831eaa9878fc 100644 --- a/pkgs/development/python-modules/pyyardian/default.nix +++ b/pkgs/development/python-modules/pyyardian/default.nix @@ -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 ]; }; -} +})