mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, python
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "docutils";
|
|
version = "0.20.1";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-8IpOJ2w6FYOobc4+NKuj/gTQK7ot1R7RYQYkToqSPjs=";
|
|
};
|
|
|
|
# Only Darwin needs LANG, but we could set it in general.
|
|
# It's done here conditionally to prevent mass-rebuilds.
|
|
checkPhase = lib.optionalString stdenv.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; [ AndersonTorres ];
|
|
};
|
|
}
|