depot/third_party/nixpkgs/pkgs/development/python-modules/pygments/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

61 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
# tests
pytestCheckHook,
wcag-contrast-ratio,
pythonOlder
}:
let
pygments = buildPythonPackage rec {
pname = "pygments";
version = "2.18.0";
pyproject = true;
disabled = pythonOlder "3.8"; # 2.18.0 requirement
src = fetchPypi {
inherit pname version;
hash = "sha256-eG/4AvMukTEb/ziJ9umoboFQX+mfJzW7bWCuDFAE8Zk=";
};
nativeBuildInputs = [ hatchling ];
# circular dependencies if enabled by default
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
wcag-contrast-ratio
];
disabledTestPaths = [
# 5 lines diff, including one nix store path in 20000+ lines
"tests/examplefiles/bash/ltmain.sh"
];
pythonImportsCheck = [ "pygments" ];
passthru.tests = {
check = pygments.overridePythonAttrs (_: {
doCheck = true;
});
};
meta = {
changelog = "https://github.com/pygments/pygments/releases/tag/${version}";
homepage = "https://pygments.org/";
description = "Generic syntax highlighter";
mainProgram = "pygmentize";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ sigmanificient ];
};
};
in
pygments