2022-11-10T21:02:02 docutils 0.18.1 -> 0.19 https://pypi.org/project/docutils/ 2022-11-10T21:02:04 attrpath: docutils 2022-11-10T21:02:04 Checking auto update branch... 2022-11-10T21:02:05 No auto update branch exists 2022-11-10T21:02:05 Old version 0.18.1" not present in master derivation file with contents: { stdenv , lib , fetchPypi , buildPythonPackage , isPy3k , python }: buildPythonPackage rec { pname = "docutils"; version = "0.19"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-M5laZ1PDC39Xf+v8LFBBH+xqrH9//rfEz+WZEHLc+eY="; }; # Only Darwin needs LANG, but we could set it in general. # It's done here conditionally to prevent mass-rebuilds. checkPhase = lib.optionalString (isPy3k && 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 ]; }; }