python3Packages.logassert: remove package

This commit is contained in:
Jon Seager
2025-09-18 11:25:49 +01:00
parent ef5b27d9a9
commit f50d14d41d
2 changed files with 0 additions and 48 deletions
@@ -1,46 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
flake8,
structlog,
}:
buildPythonPackage rec {
pname = "logassert";
version = "8.6";
pyproject = true;
src = fetchFromGitHub {
owner = "facundobatista";
repo = "logassert";
tag = version;
hash = "sha256-dkBsR4FmiKjHzZc74Mt2cAffO7ZuIRnLOpFx60e9+so=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "logassert" ];
nativeCheckInputs = [
flake8
pytestCheckHook
structlog
];
meta = {
description = "Simple Log Assertion mechanism for Python unittests";
homepage = "https://github.com/facundobatista/logassert";
changelog = "https://github.com/facundobatista/logassert/releases/tag/${src.tag}";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [
adhityaravi
bepri
dstathis
];
platforms = lib.platforms.linux;
};
}
-2
View File
@@ -8738,8 +8738,6 @@ self: super: with self; {
log-symbols = callPackage ../development/python-modules/log-symbols { };
logassert = callPackage ../development/python-modules/logassert { };
logbook = callPackage ../development/python-modules/logbook { };
logfury = callPackage ../development/python-modules/logfury { };