Files
nixpkgs/pkgs/development/python-modules/logilab/common.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

59 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
importlib-metadata,
mypy-extensions,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
pytz,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "logilab-common";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-ojvR2k3Wpj5Ej0OS57I4aFX/cGFVeL/PmT7riCTelws=";
};
postPatch = lib.optionals (pythonAtLeast "3.12") ''
substituteInPlace logilab/common/testlib.py \
--replace-fail "_TextTestResult" "TextTestResult"
'';
build-system = [ setuptools ];
dependencies = [
setuptools
mypy-extensions
typing-extensions
]
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
nativeCheckInputs = [
pytestCheckHook
pytz
];
preCheck = ''
export COLLECT_DEPRECATION_WARNINGS_PACKAGE_NAME=true
'';
meta = {
description = "Python packages and modules used by Logilab";
homepage = "https://logilab-common.readthedocs.io/";
changelog = "https://forge.extranet.logilab.fr/open-source/logilab-common/-/blob/branch/default/CHANGELOG.md";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
mainProgram = "logilab-pytest";
};
}