mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 14:16:35 +01:00
Conflicts: pkgs/development/python-modules/bundlewrap/default.nix pkgs/development/python-modules/coverage/default.nix pkgs/development/python-modules/h5netcdf/default.nix pkgs/development/python-modules/hypothesis/default.nix pkgs/development/python-modules/numba/default.nix pkgs/development/python-modules/optype/default.nix pkgs/development/python-modules/setuptools-git-versioning/default.nix pkgs/development/python-modules/sphinx/default.nix
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{
|
||
lib,
|
||
fetchurl,
|
||
buildPythonPackage,
|
||
flit-core,
|
||
pillow,
|
||
python,
|
||
}:
|
||
|
||
# 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 {
|
||
pname = "docutils";
|
||
version = "0.22.4";
|
||
pyproject = true;
|
||
|
||
src = fetchurl {
|
||
url = "mirror://sourceforge/docutils/docutils-${version}.tar.gz";
|
||
hash = "sha256-TbU7H96avsu3TZEjDTKrYm2U9rrfxXXW25GUpJ3ymWg=";
|
||
};
|
||
|
||
build-system = [ flit-core ];
|
||
|
||
# infinite recursion via sphinx and pillow
|
||
doCheck = false;
|
||
passthru.tests.pytest = self.overridePythonAttrs { doCheck = true; };
|
||
|
||
nativeCheckInputs = [ pillow ];
|
||
|
||
checkPhase = ''
|
||
runHook preCheck
|
||
${python.interpreter} test/alltests.py
|
||
runHook postCheck
|
||
'';
|
||
|
||
# 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
|
||
'';
|
||
|
||
pythonImportsCheck = [ "docutils" ];
|
||
|
||
meta = {
|
||
description = "Python Documentation Utilities";
|
||
homepage = "http://docutils.sourceforge.net/";
|
||
changelog = "https://sourceforge.net/projects/docutils/files/docutils/${version}";
|
||
license = with lib.licenses; [
|
||
publicDomain
|
||
bsd2
|
||
psfl
|
||
gpl3Plus
|
||
];
|
||
maintainers = with lib.maintainers; [ jherland ];
|
||
mainProgram = "docutils";
|
||
};
|
||
};
|
||
in
|
||
self
|