summary refs log tree commit diff
path: root/pkgs/development/python-modules/pybotvac/default.nix
blob: e7ad1ef2d3515cc54caf1313b47c65fedfb9354c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "pybotvac";
  version = "0.0.17";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f212f0df8a946c0fa25f0c20c3c9decd9ddc4dbd9b48592a3283e7481112923e";
  };

  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 ];
  };
}