nixpkgs/pkgs/development/python-modules/docutils/default.nix
Anderson Torres 9a56705f94 various: remove AndersonTorres from maintainers
As a short note, I am relinquishing the maintenance of many packages, because it
is too much to me to handle right now.
2024-11-30 16:29:06 -03:00

66 lines
1.6 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
stdenv,
lib,
fetchFromRepoOrCz,
buildPythonPackage,
flit-core,
pillow,
python,
pythonOlder,
}:
# Note: this package is used to build LLVMs documentation, which is part of the Darwin stdenv.
# It cannot use `fetchgit` because that would pull curl into the bootstrap, which is disallowed.
let
self = buildPythonPackage rec {
pname = "docutils";
version = "0.21.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromRepoOrCz {
repo = "docutils";
rev = "docutils-${version}";
hash = "sha256-Q+9yW+BYUEvPYV504368JsAoKKoaTZTeKh4tVeiNv5Y=";
};
build-system = [ flit-core ];
# infinite recursion via sphinx and pillow
doCheck = false;
passthru.tests.pytest = self.overridePythonAttrs { doCheck = true; };
nativeCheckInputs = [ pillow ];
# Only Darwin needs LANG, but we could set it in general.
# It's done here conditionally to prevent mass-rebuilds.
checkPhase =
lib.optionalString stdenv.hostPlatform.isDarwin ''LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" ''
+ ''
${python.interpreter} test/alltests.py
'';
# Create symlinks lacking a ".py" suffix, many programs depend on these names
postFixup = ''
for f in $out/bin/*.py; do
ln -s $(basename $f) $out/bin/$(basename $f .py)
done
'';
meta = with lib; {
description = "Python Documentation Utilities";
homepage = "http://docutils.sourceforge.net/";
license = with licenses; [
publicDomain
bsd2
psfl
gpl3Plus
];
maintainers = with maintainers; [ ];
};
};
in
self