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 , buildPythonPackage
, fetchPypi , fetchPypi
, click , click
, pythonOlder
, requests , requests
}: }:
@ -10,6 +11,8 @@ buildPythonPackage rec {
version = "2.6.2"; version = "2.6.2";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-8AqxLIrsFtAazH+ZqhXbkYNhlAhQ5XL/tNFRAGLh2kk="; hash = "sha256-8AqxLIrsFtAazH+ZqhXbkYNhlAhQ5XL/tNFRAGLh2kk=";
@ -30,6 +33,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library for working with verisure devices"; description = "Python library for working with verisure devices";
homepage = "https://github.com/persandstrom/python-verisure"; homepage = "https://github.com/persandstrom/python-verisure";
changelog = "https://github.com/persandstrom/python-verisure#version-history";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };