blob: 0944e45906850f5c800c98d549d063adcac62743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
requests-oauthlib,
voluptuous,
setuptools,
}:
buildPythonPackage rec {
pname = "pybotvac";
version = "0.0.28";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-XIGG8HmjI3dSq42co2e05xHIYjIM39qVanMJLDqWFCg=";
};
build-system = [ setuptools ];
dependencies = [
requests
requests-oauthlib
voluptuous
];
# Module no tests
doCheck = false;
pythonImportsCheck = [ "pybotvac" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|