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 ]; };