diff --git a/pkgs/development/python-modules/amiibo-py/default.nix b/pkgs/development/python-modules/amiibo-py/default.nix deleted file mode 100644 index 0934747945a0..000000000000 --- a/pkgs/development/python-modules/amiibo-py/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - pythonOlder, - aiohttp, - requests, -}: - -buildPythonPackage rec { - pname = "amiibo-py"; - version = "unstable-2021-01-16"; - format = "setuptools"; - disabled = pythonOlder "3.5.3"; # Older versions are not supported upstream - - src = fetchFromGitHub { - owner = "XiehCanCode"; - repo = "amiibo.py"; - rev = "4766037530f41ad11368240e994888d196783b83"; - sha256 = "0ln8ykaws8c5fvzlzccn60mpbdbvxlhkp3nsvs2xqdbsqp270yv2"; - }; - - propagatedBuildInputs = [ - aiohttp - requests - ]; - - doCheck = false; # No tests are available upstream - pythonImportsCheck = [ "amiibo" ]; - - meta = with lib; { - description = "API Wrapper for amiiboapi.com"; - homepage = "https://github.com/XiehCanCode/amiibo.py"; - license = licenses.mit; - maintainers = [ ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 63ce8623c688..d0e9f2f4017d 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -53,6 +53,7 @@ mapAliases ({ amazon_kclpy = amazon-kclpy; # added 2023-08-08 ambiclimate = throw "ambiclimate has been removed, because the service has been terminated after 2024-03-31."; # Added 2024-06-07 ambee = throw "ambee has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04 + amiibo-py = throw "amiibo-py has been removed because the upstream repository was removed"; # Added 2025-01-13 ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30 ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute name: `pkgs.ansible-doctor`"; # Added 2023-05-16 ansible-later = throw "ansible-later has been promoted to a top-level attribute name: `pkgs.ansible-later`"; # Added 2023-05-16 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 96b12495057e..a3c49d207333 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -576,8 +576,6 @@ self: super: with self; { amcrest = callPackage ../development/python-modules/amcrest { }; - amiibo-py = callPackage ../development/python-modules/amiibo-py { }; - amply = callPackage ../development/python-modules/amply { }; amqp = callPackage ../development/python-modules/amqp { };