From 44ef728035a139e1099cfb1a8150b004a52e8be6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 21 Dec 2022 10:14:23 +0100 Subject: [PATCH 1/2] python310Packages.pyrainbird: add changelog to meta --- pkgs/development/python-modules/pyrainbird/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/pyrainbird/default.nix b/pkgs/development/python-modules/pyrainbird/default.nix index 5461dc44523..fe88ad601a6 100644 --- a/pkgs/development/python-modules/pyrainbird/default.nix +++ b/pkgs/development/python-modules/pyrainbird/default.nix @@ -53,6 +53,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to interact with Rainbird controllers"; homepage = "https://github.com/jbarrancos/pyrainbird/"; + changelog = "https://github.com/jbarrancos/pyrainbird/releases/tag/${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From b48d06617180a138035d0a82bb81b463b5685062 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 21 Dec 2022 10:16:16 +0100 Subject: [PATCH 2/2] python310Packages.pyrainbird: 0.6.3 -> 0.7.1 Changelog: https://github.com/jbarrancos/pyrainbird/releases/tag/0.7.1 --- pkgs/development/python-modules/pyrainbird/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyrainbird/default.nix b/pkgs/development/python-modules/pyrainbird/default.nix index fe88ad601a6..11e7b778a45 100644 --- a/pkgs/development/python-modules/pyrainbird/default.nix +++ b/pkgs/development/python-modules/pyrainbird/default.nix @@ -3,6 +3,7 @@ , fetchFromGitHub , parameterized , pycryptodome +, pytest-aiohttp , pytestCheckHook , pythonOlder , pyyaml @@ -13,7 +14,7 @@ buildPythonPackage rec { pname = "pyrainbird"; - version = "0.6.3"; + version = "0.7.1"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -22,7 +23,7 @@ buildPythonPackage rec { owner = "jbarrancos"; repo = pname; rev = version; - hash = "sha256-yGUBCs1IxbGKBo21gExFIqDawM2EHlO+jiRqonEUnPk="; + hash = "sha256-pN/QILpXJoQAccB7CSDLxCDYfijf/VJbYw+NRUI4kvs="; }; postPatch = '' @@ -41,6 +42,7 @@ buildPythonPackage rec { checkInputs = [ parameterized + pytest-aiohttp pytestCheckHook requests-mock responses