1{ stdenv, buildPythonPackage, fetchPypi, requests }:
2
3buildPythonPackage rec {
4 pname = "pybotvac";
5 version = "0.0.17";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "f212f0df8a946c0fa25f0c20c3c9decd9ddc4dbd9b48592a3283e7481112923e";
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}