python312Packages.pybotvac: format with nixfmt
This commit is contained in:
parent
c96bb37f80
commit
8cdf8ea4ba
1 changed files with 11 additions and 14 deletions
|
@ -1,11 +1,12 @@
|
||||||
{ lib
|
{
|
||||||
, buildPythonPackage
|
lib,
|
||||||
, fetchPypi
|
buildPythonPackage,
|
||||||
, pythonOlder
|
fetchPypi,
|
||||||
, requests
|
pythonOlder,
|
||||||
, requests-oauthlib
|
requests,
|
||||||
, voluptuous
|
requests-oauthlib,
|
||||||
, setuptools
|
voluptuous,
|
||||||
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -26,9 +27,7 @@ buildPythonPackage rec {
|
||||||
--replace-fail "urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)" "# urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)"
|
--replace-fail "urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)" "# urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
build-system = [
|
build-system = [ setuptools ];
|
||||||
setuptools
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
requests
|
requests
|
||||||
|
@ -39,9 +38,7 @@ buildPythonPackage rec {
|
||||||
# Module no tests
|
# Module no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "pybotvac" ];
|
||||||
"pybotvac"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python module for interacting with Neato Botvac Connected vacuum robots";
|
description = "Python module for interacting with Neato Botvac Connected vacuum robots";
|
||||||
|
|
Loading…
Reference in a new issue