nimbo: remove

* Archived upstream since 2022
* Unmaintained since 2021
This commit is contained in:
Anthony Roussel
2026-01-18 23:16:29 +01:00
parent 79ff4ecacb
commit 4721da26f9
2 changed files with 1 additions and 67 deletions
-67
View File
@@ -1,67 +0,0 @@
{
lib,
stdenv,
awscli,
fetchFromGitHub,
installShellFiles,
python3,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "nimbo";
version = "0.3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "nimbo-sh";
repo = "nimbo";
tag = "v${finalAttrs.version}";
hash = "sha256-YC5T02Sw22Uczufbyts8l99oCQW4lPq0gPMRXCoKsvw=";
};
postPatch = ''
# Wrong format specifier in awscli dependency
substituteInPlace setup.py \
--replace-fail "awscli>=1.19<2.0" "awscli>=1.19,<2.0"
'';
pythonRelaxDeps = [
"awscli"
"colorama"
"rich"
];
build-system = with python3.pkgs; [ setuptools ];
nativeBuildInputs = [ installShellFiles ];
dependencies = with python3.pkgs; [
boto3
click
colorama
pydantic
pyyaml
requests
rich
setuptools
];
# nimbo tests require an AWS instance
doCheck = false;
pythonImportsCheck = [ "nimbo" ];
makeWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [ awscli ])
];
meta = {
description = "Run machine learning jobs on AWS with a single command";
homepage = "https://github.com/nimbo-sh/nimbo";
license = lib.licenses.bsl11;
maintainers = with lib.maintainers; [ noreferences ];
};
})
+1
View File
@@ -1223,6 +1223,7 @@ mapAliases {
nfstrace = throw "nfstrace has been removed, as it was broken"; # Added 2025-08-25
nginxQuic = throw "'nginxQuic' has been removed. QUIC support is now available in the default nginx builds.";
ngrid = throw "'ngrid' has been removed as it has been unmaintained upstream and broken"; # Added 2025-11-15
nimbo = throw "'nimbo' has been removed due to being archived upstream."; # Added 2026-01-18
nix-direnv-flakes = throw "'nix-direnv-flakes' has been renamed to/replaced by 'nix-direnv'"; # Converted to throw 2025-10-27
nix-ld-rs = throw "'nix-ld-rs' has been renamed to/replaced by 'nix-ld'"; # Converted to throw 2025-10-27
nix-linter = throw "nix-linter has been removed as it was broken for 3 years and unmaintained upstream"; # Added 2025-09-06