python310Packages.aionotion: update disabled

This commit is contained in:
Fabian Affolter 2022-10-30 01:57:23 +02:00 committed by GitHub
parent 3171790bc7
commit 556082b2f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,16 +15,19 @@ buildPythonPackage rec {
pname = "aionotion";
version = "2022.10.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bachya";
repo = pname;
rev = version;
sha256 = "sha256-DJkqFj87N8OlWHNto+tInj8QvVoNA9faLBb/pBbQl0U=";
hash = "sha256-DJkqFj87N8OlWHNto+tInj8QvVoNA9faLBb/pBbQl0U=";
};
nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
@ -38,9 +41,13 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [ "examples" ];
disabledTestPaths = [
"examples"
];
pythonImportsCheck = [ "aionotion" ];
pythonImportsCheck = [
"aionotion"
];
meta = with lib; {
description = "Python library for Notion Home Monitoring";