python3Packages.bsblan: disable on older Python releases

This commit is contained in:
Fabian Affolter
2022-01-23 09:51:47 +01:00
committed by GitHub
parent db3cc2d36e
commit c43ee47d81
@@ -8,6 +8,7 @@
, pytest-asyncio
, pytest-cov
, pytest-mock
, pythonOlder
, aiohttp
, attrs
, cattrs
@@ -17,6 +18,9 @@
buildPythonPackage rec {
pname = "bsblan";
version = "0.5.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "liudger";
@@ -42,7 +46,9 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "bsblan" ];
pythonImportsCheck = [
"bsblan"
];
meta = with lib; {
description = "Python client for BSB-Lan";