From 253b18cfda8372a59018af0694fa245a7d669fd7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 29 Dec 2022 11:43:40 +0100 Subject: [PATCH] python310Packages.pyisy: add changelog to meta --- pkgs/development/python-modules/pyisy/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pyisy/default.nix b/pkgs/development/python-modules/pyisy/default.nix index 26dab5b1c77b..de4373dff41f 100644 --- a/pkgs/development/python-modules/pyisy/default.nix +++ b/pkgs/development/python-modules/pyisy/default.nix @@ -4,11 +4,15 @@ , requests , python-dateutil , aiohttp +, pythonOlder }: buildPythonPackage rec { pname = "pyisy"; version = "3.0.9"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "automicus"; @@ -37,6 +41,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module to talk to ISY994 from UDI"; homepage = "https://github.com/automicus/PyISY"; + changelog = "https://github.com/automicus/PyISY/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ dotlambda ]; };