diff options
| author | OTABI Tomoya <tomoya.otabi@gmail.com> | 2024-10-06 14:46:31 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-06 14:46:31 +0900 |
| commit | ae58135210c727222531bb048fea3a52dfc0a66c (patch) | |
| tree | dc9ca44a4d87768158fa0887d534d49b63fb2d4a | |
| parent | python312Packages.aiolip: drop (#346564) (diff) | |
| parent | python312Packages.ambee: drop (diff) | |
| download | nixpkgs-ae58135210c727222531bb048fea3a52dfc0a66c.tar.gz | |
python312Packages.ambee: drop (#346566)
| -rw-r--r-- | pkgs/development/python-modules/ambee/default.nix | 56 | ||||
| -rw-r--r-- | pkgs/top-level/python-aliases.nix | 1 | ||||
| -rw-r--r-- | pkgs/top-level/python-packages.nix | 2 |
3 files changed, 1 insertions, 58 deletions
diff --git a/pkgs/development/python-modules/ambee/default.nix b/pkgs/development/python-modules/ambee/default.nix deleted file mode 100644 index 91cf9f27b2e1..000000000000 --- a/pkgs/development/python-modules/ambee/default.nix +++ /dev/null @@ -1,56 +0,0 @@ -{ - lib, - buildPythonPackage, - pythonOlder, - fetchFromGitHub, - aiohttp, - poetry-core, - yarl, - aresponses, - pytest-asyncio, - pytest-cov-stub, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "ambee"; - version = "0.4.0"; - disabled = pythonOlder "3.8"; - pyproject = true; - - src = fetchFromGitHub { - owner = "frenck"; - repo = "python-ambee"; - rev = "v${version}"; - hash = "sha256-2wX2CLr6kdVw2AGPW6DmYI2OBfQFI/iWVorok2d3wx4="; - }; - - build-system = [ poetry-core ]; - - dependencies = [ - aiohttp - yarl - ]; - - nativeCheckInputs = [ - aresponses - pytest-asyncio - pytest-cov-stub - pytestCheckHook - ]; - - postPatch = '' - # Upstream doesn't set a version for the pyproject.toml - substituteInPlace pyproject.toml \ - --replace-fail "0.0.0" "${version}" - ''; - - pythonImportsCheck = [ "ambee" ]; - - meta = with lib; { - description = "Python client for Ambee API"; - homepage = "https://github.com/frenck/python-ambee"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index ea960eb1d176..89793441e155 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -48,6 +48,7 @@ mapAliases ({ aioquic-mitmproxy = throw "aioquic-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-01-16 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 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 8a1d87bab362..456d25560b33 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -562,8 +562,6 @@ self: super: with self; { amazon-kclpy = callPackage ../development/python-modules/amazon-kclpy { }; - ambee = callPackage ../development/python-modules/ambee { }; - amberelectric = callPackage ../development/python-modules/amberelectric { }; amcrest = callPackage ../development/python-modules/amcrest { }; |
