python3Packages.pybotvac: 0.0.18 -> 0.0.20
This commit is contained in:
parent
4702290465
commit
fb1c27f9e9
@ -1,18 +1,33 @@
|
|||||||
{ lib, stdenv, buildPythonPackage, fetchPypi, requests }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
, requests_oauthlib
|
||||||
|
, voluptuous
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pybotvac";
|
pname = "pybotvac";
|
||||||
version = "0.0.18";
|
version = "0.0.20";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "e983c9ffc0734c2e5a7c2adf5d0d0dfe399d94157c590ef70fad765f882c341f";
|
sha256 = "sha256-1NnTSO4vO3Ryt4vYD5ZTQGr241GqA2KsGRBVowSTCzM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests ];
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
requests_oauthlib
|
||||||
|
voluptuous
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pybotvac" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python package for controlling Neato pybotvac Connected vacuum robot";
|
description = "Python module for interacting with Neato Botvac Connected vacuum robots";
|
||||||
homepage = "https://github.com/stianaske/pybotvac";
|
homepage = "https://github.com/stianaske/pybotvac";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ elseym ];
|
maintainers = with maintainers; [ elseym ];
|
||||||
|
Loading…
Reference in New Issue
Block a user