python3Packages.nonbloat-db: drop
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user