linux-doc: fixup fetch after commit 9e68ab7b83

Let's stop using src.override.  I see no advantage,
and the switch of original src from `sha256 =` to `hash =`
was causing really confusing errors.
This commit is contained in:
Vladimír Čunát 2022-07-26 12:06:13 +02:00
parent 8aaeccd647
commit 8198636be0
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -15,7 +15,8 @@ let
packageOverrides = final: prev: rec { packageOverrides = final: prev: rec {
docutils_old = prev.docutils.overridePythonAttrs (oldAttrs: rec { docutils_old = prev.docutils.overridePythonAttrs (oldAttrs: rec {
version = "0.16"; version = "0.16";
src = oldAttrs.src.override { src = final.fetchPypi {
pname = "docutils";
inherit version; inherit version;
sha256 = "sha256-wt46YOnn0Hvia38rAMoDCcIH4GwQD5zCqUkx/HWkePw="; sha256 = "sha256-wt46YOnn0Hvia38rAMoDCcIH4GwQD5zCqUkx/HWkePw=";
}; };