Files
nixpkgs/pkgs/development/python-modules/aionotion/default.nix
T
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

77 lines
1.4 KiB
Nix

{
lib,
aiohttp,
aresponses,
buildPythonPackage,
certifi,
ciso8601,
fetchFromGitHub,
frozenlist,
mashumaro,
poetry-core,
pyjwt,
pytest-aiohttp,
pytest-asyncio,
pytestCheckHook,
pytest-cov-stub,
yarl,
}:
buildPythonPackage rec {
pname = "aionotion";
version = "2025.02.0";
pyproject = true;
src = fetchFromGitHub {
owner = "bachya";
repo = "aionotion";
tag = version;
hash = "sha256-MqH3CPp+dAX5DXtnHio95KGQ+Ok2TXrX6rn/AMx5OsY=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "poetry-core==" "poetry-core>="
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
certifi
ciso8601
frozenlist
mashumaro
pyjwt
yarl
];
pythonRelaxDeps = [
"ciso8601"
"frozenlist"
"mashumaro"
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
aresponses
pytest-aiohttp
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
disabledTestPaths = [ "examples" ];
pythonImportsCheck = [ "aionotion" ];
meta = {
description = "Python library for Notion Home Monitoring";
homepage = "https://github.com/bachya/aionotion";
changelog = "https://github.com/bachya/aionotion/releases/tag/${src.tag}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}