python312Packages.amiibo-py: drop (#373577)

This commit is contained in:
Nick Cao
2025-01-14 09:58:39 -05:00
committed by GitHub
3 changed files with 1 additions and 39 deletions
@@ -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 = [ ];
};
}
+1
View File
@@ -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
-2
View File
@@ -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 { };