nixpkgs/pkgs/development/python-modules/logilab/common.nix
2024-05-02 23:48:41 +02:00

57 lines
1.3 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 = with lib; {
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 = licenses.lgpl21Plus;
maintainers = with maintainers; [ ];
mainProgram = "logilab-pytest";
};
}