2020-04-24 23:36:52 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
2024-05-15 15:35:15 +00:00
|
|
|
|
, fetchFromRepoOrCz
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, buildPythonPackage
|
2024-05-15 15:35:15 +00:00
|
|
|
|
, flit-core
|
|
|
|
|
, pillow
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, python
|
2022-12-17 10:02:37 +00:00
|
|
|
|
, pythonOlder
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
|
# Note: this package is used to build LLVM’s 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 {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pname = "docutils";
|
2024-05-15 15:35:15 +00:00
|
|
|
|
version = "0.21.2";
|
|
|
|
|
pyproject = true;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
|
src = fetchFromRepoOrCz {
|
|
|
|
|
repo = "docutils";
|
|
|
|
|
rev = "docutils-${version}";
|
|
|
|
|
hash = "sha256-Q+9yW+BYUEvPYV504368JsAoKKoaTZTeKh4tVeiNv5Y=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
|
build-system = [ flit-core ];
|
|
|
|
|
|
|
|
|
|
# infinite recursion via sphinx and pillow
|
|
|
|
|
doCheck = false;
|
|
|
|
|
passthru.tests.pytest = self.overridePythonAttrs { doCheck = true; };
|
|
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
|
pillow
|
|
|
|
|
];
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Only Darwin needs LANG, but we could set it in general.
|
|
|
|
|
# It's done here conditionally to prevent mass-rebuilds.
|
2022-12-17 10:02:37 +00:00
|
|
|
|
checkPhase = lib.optionalString stdenv.isDarwin ''LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" '' + ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
${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
|
|
|
|
|
'';
|
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
|
meta = with lib; {
|
2020-11-03 02:18:15 +00:00
|
|
|
|
description = "Python Documentation Utilities";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
homepage = "http://docutils.sourceforge.net/";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
license = with licenses; [ publicDomain bsd2 psfl gpl3Plus ];
|
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
2024-05-15 15:35:15 +00:00
|
|
|
|
};
|
|
|
|
|
in self
|