Merge pull request #209917 from fabaff/pybotvac-bump

python310Packages.pybotvac: 0.0.23 -> 0.0.24
This commit is contained in:
Fabian Affolter 2023-01-09 22:10:48 +01:00 committed by GitHub
commit 4ee8c24790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,22 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
, requests-oauthlib
, voluptuous
, pythonOlder
}:
buildPythonPackage rec {
pname = "pybotvac";
version = "0.0.23";
version = "0.0.24";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-VLT+VlwQAAxU1WRNCB4t4fhQ2u+6w5zqdM6mSbR7+xI=";
hash = "sha256-SXIs9AUXWm1H49MVDT4z6msNPaW5sAU20rcsWZ7ERdU=";
};
propagatedBuildInputs = [
@ -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 ];
};
}