python311Packages.vsure: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-06-27 10:02:30 +02:00 committed by Martin Weinelt
parent 0d9bbeda51
commit fbcf9076d2

View file

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