add asyncdbus

This commit is contained in:
Jeffrey C. Ollie 2022-12-24 11:10:51 -06:00
parent 8b2bf56ab5
commit 7d571dd9f5
Signed by: jeff
GPG key ID: 6F86035A6D97044E
3 changed files with 24 additions and 4 deletions

View file

@ -68,17 +68,22 @@
);
types-deprecated = super.types-deprecated.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [ pkgs.python310Packages.setuptools ];
buildInputs = old.buildInputs ++ [ pkgs.python3Packages.setuptools ];
}
);
pydantic-yaml = super.pydantic-yaml.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [ pkgs.python310Packages.setuptools ];
buildInputs = old.buildInputs ++ [ pkgs.python3Packages.setuptools ];
}
);
pydocstringformatter = super.pydocstringformatter.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [ pkgs.python310Packages.setuptools ];
buildInputs = old.buildInputs ++ [ pkgs.python3Packages.setuptools ];
}
);
asyncdbus = super.asyncdbus.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [ pkgs.python3Packages.setuptools ];
}
);
}

16
poetry.lock generated
View file

@ -106,6 +106,17 @@ category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "asyncdbus"
version = "0.6.1"
description = "A zero-dependency async DBus library"
category = "main"
optional = false
python-versions = ">=3.7.0"
[package.dependencies]
anyio = ">=3"
[[package]]
name = "attrs"
version = "22.1.0"
@ -597,7 +608,7 @@ multidict = ">=4.0"
[metadata]
lock-version = "1.1"
python-versions = "^3.10"
content-hash = "5d0ec21237c3e5ca8ca28e9d0cca6a6670d01cf7b06cb394ed1cddfe76282b18"
content-hash = "401673615ee73c59f994aa7afa248a83126aa2f9bfeba831d26b3ee07960ae79"
[metadata.files]
aiofile = [
@ -716,6 +727,9 @@ async-timeout = [
{file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"},
{file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"},
]
asyncdbus = [
{file = "asyncdbus-0.6.1.tar.gz", hash = "sha256:4c67cf70b9dfe1608ffb37070510e1e53393aaefc9e31be8da142bc309afe73f"},
]
attrs = [
{file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"},
{file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"},

View file

@ -17,6 +17,7 @@ xdg = "^5.1.1"
aiopath = "^0.6.11"
arrow = "^1.2.3"
click = "^8.1.3"
asyncdbus = "^0.6.1"
[tool.poetry.scripts]
greendeck = "greendeck.main:main"