docutils: 0.19 -> 0.20.1

This commit is contained in:
Theodore Ni 2023-08-16 04:15:10 -07:00
parent 1dcd19866c
commit 2312861130
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -19004,7 +19004,15 @@ with pkgs;
doclifter = callPackage ../development/tools/misc/doclifter { };
docutils = with python3Packages; toPythonApplication docutils;
docutils = with python3Packages; toPythonApplication (
docutils.overridePythonAttrs (attrs: rec {
version = "0.20.1";
src = attrs.src.override {
inherit version;
hash = "sha256-8IpOJ2w6FYOobc4+NKuj/gTQK7ot1R7RYQYkToqSPjs=";
};
})
);
doctl = callPackage ../development/tools/doctl { };