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