python3Packages.logassert: remove package
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user