linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pybotvac / default.nix
blobca093ba8e8bb9440cc18b233d80f179be2fc0dda
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , requests_oauthlib
6 , voluptuous
7 }:
9 buildPythonPackage rec {
10   pname = "pybotvac";
11   version = "0.0.20";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-1NnTSO4vO3Ryt4vYD5ZTQGr241GqA2KsGRBVowSTCzM=";
16   };
18   propagatedBuildInputs = [
19     requests
20     requests_oauthlib
21     voluptuous
22   ];
24   # no tests
25   doCheck = false;
27   pythonImportsCheck = [ "pybotvac" ];
29   meta = with lib; {
30     description = "Python module for interacting with Neato Botvac Connected vacuum robots";
31     homepage = "https://github.com/stianaske/pybotvac";
32     license = licenses.mit;
33     maintainers = with maintainers; [ elseym ];
34   };