python3Packages.markdown-macros: make patch urls reproducible

This commit is contained in:
Peder Bergebakken Sundt 2023-10-01 18:15:26 +02:00
parent 85d8c838ac
commit f08a223dbb

View file

@ -16,8 +16,10 @@ buildPythonPackage rec {
patches = [
# Fixes a bug with markdown>2.4
# https://github.com/wnielson/markdown-macros/pull/1
(fetchpatch {
url = "https://github.com/wnielson/markdown-macros/pull/1.patch";
name = "wnielson-markdown-macros-pull-1.patch";
url = "https://github.com/wnielson/markdown-macros/commit/e38cba9acb6789cc128f6fe9ca427ba71815a20f.patch";
sha256 = "17njbgq2srzkf03ar6yn92frnsbda3g45cdi529fdh0x8mmyxci0";
})
];