1{ stdenv, buildPythonPackage, fetchPypi, requests }:
2
3buildPythonPackage rec {
4 pname = "pybotvac";
5 version = "0.0.13";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "f6f147694ee5cbab1dea494454c11bd254e1c214d96d057cba27894a87210f1b";
10 };
11
12 propagatedBuildInputs = [ requests ];
13
14 meta = with stdenv.lib; {
15 description = "Python package for controlling Neato pybotvac Connected vacuum robot";
16 homepage = https://github.com/stianaske/pybotvac;
17 license = licenses.mit;
18 maintainers = with maintainers; [ elseym ];
19 };
20}