diff --git a/pkgs/development/python-modules/pytedee-async/default.nix b/pkgs/development/python-modules/aiotedee/default.nix similarity index 66% rename from pkgs/development/python-modules/pytedee-async/default.nix rename to pkgs/development/python-modules/aiotedee/default.nix index b4f2868db29d..1b910913157d 100644 --- a/pkgs/development/python-modules/pytedee-async/default.nix +++ b/pkgs/development/python-modules/aiotedee/default.nix @@ -8,17 +8,17 @@ }: buildPythonPackage rec { - pname = "pytedee-async"; - version = "0.2.23"; + pname = "aiotedee"; + version = "0.2.25"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "zweckj"; - repo = "pytedee_async"; + repo = "aiotedee"; tag = "v${version}"; - hash = "sha256-aRxZcYm+xXt0QiUVeAe7OocY3Tew/UPiKzMCvSTaUuw="; + hash = "sha256-xVZrXKJXQd+Jklka+LGA/q+vgQqsVH+prboM6G3CWWg="; }; build-system = [ setuptools ]; @@ -32,8 +32,8 @@ buildPythonPackage rec { meta = with lib; { description = "Module to interact with Tedee locks"; - homepage = "https://github.com/zweckj/pytedee_async"; - changelog = "https://github.com/zweckj/pytedee_async/releases/tag/${src.tag}"; + homepage = "https://github.com/zweckj/aiotedee"; + changelog = "https://github.com/zweckj/aiotedee/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index b9dd216d6667..040c91738a09 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -529,6 +529,7 @@ mapAliases ({ pxml = throw "pxml was removed, because it was disabled on all python version since 3.8 and last updated in 2020."; # added 2024-05-13 py3to2 = throw "py3to2 is unmaintained and source is no longer available"; # added 2024-10-23 pypcap = throw "pypcap has been removed because it is broken and unmaintained upstream."; # added 2025-06-18 + pytedee-async = aiotedee; # added 2025-07-06 pytricia = throw "pytricia has been removed, since it is unmaintained"; # added 2025-05-25 py-radix = throw "py-radix has been removed, since it abandoned"; # added 2023-07-07 py_stringmatching = py-stringmatching; # added 2023-11-12 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a4e739e70e5b..a624bebb8beb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -508,6 +508,8 @@ self: super: with self; { aiotarfile = callPackage ../development/python-modules/aiotarfile { }; + aiotedee = callPackage ../development/python-modules/aiotedee { }; + aiotractive = callPackage ../development/python-modules/aiotractive { }; aiounifi = callPackage ../development/python-modules/aiounifi { }; @@ -13979,8 +13981,6 @@ self: super: with self; { pyte = callPackage ../development/python-modules/pyte { }; - pytedee-async = callPackage ../development/python-modules/pytedee-async { }; - pytelegrambotapi = callPackage ../development/python-modules/pyTelegramBotAPI { }; pytenable = callPackage ../development/python-modules/pytenable { };