From fbcf9076d2d669e2176c479edcbce885498404f3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 27 Jun 2023 10:02:30 +0200 Subject: [PATCH] python311Packages.vsure: add changelog to meta --- pkgs/development/python-modules/vsure/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/vsure/default.nix b/pkgs/development/python-modules/vsure/default.nix index 4b92d9b58444..b204c6c79bff 100644 --- a/pkgs/development/python-modules/vsure/default.nix +++ b/pkgs/development/python-modules/vsure/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchPypi , click +, pythonOlder , requests }: @@ -10,6 +11,8 @@ buildPythonPackage rec { version = "2.6.2"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchPypi { inherit pname version; hash = "sha256-8AqxLIrsFtAazH+ZqhXbkYNhlAhQ5XL/tNFRAGLh2kk="; @@ -30,6 +33,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for working with verisure devices"; homepage = "https://github.com/persandstrom/python-verisure"; + changelog = "https://github.com/persandstrom/python-verisure#version-history"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; };