python310Packages.pybotvac: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-09 19:02:02 +01:00
parent b3a1a8050f
commit 8c794bcbec

View file

@ -1,14 +1,14 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
, requests-oauthlib
, voluptuous
, pythonOlder
}:
buildPythonPackage rec {
pname = "pybotvac";
pname = "${version}";
version = "0.0.23";
format = "setuptools";
@ -25,7 +25,7 @@ buildPythonPackage rec {
voluptuous
];
# no tests
# Module no tests
doCheck = false;
pythonImportsCheck = [
@ -35,7 +35,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module for interacting with Neato Botvac Connected vacuum robots";
homepage = "https://github.com/stianaske/pybotvac";
changelog = "https://github.com/stianaske/pybotvac/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ fab ];
};
}