lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.aionotion: update disabled

authored by

Fabian Affolter and committed by
GitHub
556082b2 3171790b

+12 -5
+12 -5
pkgs/development/python-modules/aionotion/default.nix
··· 15 15 pname = "aionotion"; 16 16 version = "2022.10.0"; 17 17 format = "pyproject"; 18 - disabled = pythonOlder "3.6"; 18 + 19 + disabled = pythonOlder "3.7"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "bachya"; 22 23 repo = pname; 23 24 rev = version; 24 - sha256 = "sha256-DJkqFj87N8OlWHNto+tInj8QvVoNA9faLBb/pBbQl0U="; 25 + hash = "sha256-DJkqFj87N8OlWHNto+tInj8QvVoNA9faLBb/pBbQl0U="; 25 26 }; 26 27 27 - nativeBuildInputs = [ poetry-core ]; 28 + nativeBuildInputs = [ 29 + poetry-core 30 + ]; 28 31 29 32 propagatedBuildInputs = [ 30 33 aiohttp ··· 38 41 pytestCheckHook 39 42 ]; 40 43 41 - disabledTestPaths = [ "examples" ]; 44 + disabledTestPaths = [ 45 + "examples" 46 + ]; 42 47 43 - pythonImportsCheck = [ "aionotion" ]; 48 + pythonImportsCheck = [ 49 + "aionotion" 50 + ]; 44 51 45 52 meta = with lib; { 46 53 description = "Python library for Notion Home Monitoring";