python3Packages.aioflo: 2021.10.0 -> 2021.11.0

This commit is contained in:
Fabian Affolter 2021-11-29 09:12:46 +01:00
parent e39e0221fe
commit 34f6106f66

View File

@ -6,35 +6,42 @@
, poetry-core , poetry-core
, pytest-aiohttp , pytest-aiohttp
, pytest-asyncio , pytest-asyncio
, pytest-cov
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioflo"; pname = "aioflo";
version = "2021.10.0"; version = "2021.11.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bachya"; owner = "bachya";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-BunTgK8IS9uE8y/LMk7624kunouNAWNqe3Xm2DjQ1pY="; sha256 = "sha256-7NrOoc1gi8YzZaKvCnHnzAKPlMnMhqxjdyZGN5H/8TQ=";
}; };
nativeBuildInputs = [ poetry-core ]; nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [ aiohttp ]; propagatedBuildInputs = [
aiohttp
];
checkInputs = [ checkInputs = [
aresponses aresponses
pytest-aiohttp pytest-aiohttp
pytest-asyncio pytest-asyncio
pytest-cov
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "aioflo" ]; pythonImportsCheck = [
"aioflo"
];
meta = with lib; { meta = with lib; {
description = "Python library for Flo by Moen Smart Water Detectors"; description = "Python library for Flo by Moen Smart Water Detectors";