python310Packages.aionotion: update disabled
This commit is contained in:
parent
3171790bc7
commit
556082b2f5
1 changed files with 12 additions and 5 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue