2019-01-01 21:57:18 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, requests }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pybotvac";
|
2019-10-24 07:47:43 +01:00
|
|
|
version = "0.0.17";
|
2019-01-01 21:57:18 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:43 +01:00
|
|
|
sha256 = "f212f0df8a946c0fa25f0c20c3c9decd9ddc4dbd9b48592a3283e7481112923e";
|
2019-01-01 21:57:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python package for controlling Neato pybotvac Connected vacuum robot";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/stianaske/pybotvac";
|
2019-01-01 21:57:18 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elseym ];
|
|
|
|
};
|
|
|
|
}
|