python3Packages.nonbloat-db: drop

This commit is contained in:
Perchun Pak
2026-04-27 21:09:02 +02:00
parent 0726a0ecb6
commit f4ec4083a4
3 changed files with 1 additions and 73 deletions
@@ -1,71 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
poetry-dynamic-versioning,
# dependencies
aiofile,
typing-extensions,
# tests
pytestCheckHook,
pytest-asyncio,
pytest-cov-stub,
pytest-mock,
pytest-randomly,
faker,
}:
buildPythonPackage (finalAttrs: {
pname = "nonbloat-db";
version = "0.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "PerchunPak";
repo = "nonbloat-db";
tag = "v${finalAttrs.version}";
hash = "sha256-x6QFOZ+RYdophuRXMKE4RNi1xDnsa3naUMDbn1vG7hM=";
};
build-system = [
poetry-core
poetry-dynamic-versioning
];
dependencies = [
aiofile
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
pytest-cov-stub
pytest-mock
pytest-randomly
faker
];
pythonImportsCheck = [
"nbdb"
"nbdb.storage"
];
disabledTests = [
# flaky
"test_write_in_background"
];
meta = {
description = "Simple key-value database for my small projects";
homepage = "https://github.com/PerchunPak/nonbloat-db";
changelog = "https://github.com/PerchunPak/nonbloat-db/blob/${finalAttrs.src.tag}/CHANGES.md";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ PerchunPak ];
};
})
+1
View File
@@ -348,6 +348,7 @@ mapAliases {
ninja-python = throw "'ninja-python' has been renamed to/replaced by 'ninja'"; # Converted to throw 2025-10-29
nitpick = throw "'nitpick' has been removed because it was unmaintained upstream since 2017 and using python2"; # added 2025-08-25
nixpkgs = throw "nixpkgs has been removed as its dependency pythonix was removed"; # added 2025-07-24
nonbloat-db = throw "nonbloat-db has been removed because the upstream project was archived."; # added 2025-05-16
Nuitka = throw "'Nuitka' has been renamed to/replaced by 'nuitka'"; # Converted to throw 2025-10-29
oauth2 = throw "oauth2 has been removed as it is unmaintained"; # added 2025-05-16
oauth = throw "oauth has been removed as it is unmaintained"; # added 2025-05-16
-2
View File
@@ -11192,8 +11192,6 @@ self: super: with self; {
nominatim-api = callPackage ../by-name/no/nominatim/nominatim-api.nix { };
nonbloat-db = callPackage ../development/python-modules/nonbloat-db { };
noneprompt = callPackage ../development/python-modules/noneprompt { };
nonestorage = callPackage ../development/python-modules/nonestorage { };