pythonPackages.markdown: 2.6.10 -> 3.1.1

This commit is contained in:
Gabriel Ebner 2019-05-30 15:25:43 +02:00
parent 3221fc708b
commit 4f01e10b14

View File

@ -7,22 +7,18 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "Markdown"; pname = "Markdown";
version = "2.6.10"; version = "3.1.1";
src = fetchPypi { src = fetchPypi {
extension = "zip";
inherit pname version; inherit pname version;
sha256 = "cfa536d1ee8984007fcecc5a38a493ff05c174cb74cb2341dafd175e6bc30851"; sha256 = "2e50876bcdd74517e7b71f3e7a76102050edec255b3983403f1a63e7c8a41e7a";
}; };
# error: invalid command 'test'
# doCheck = false;
checkInputs = [ nose pyyaml ]; checkInputs = [ nose pyyaml ];
meta = { meta = {
description = "A Python implementation of John Grubers Markdown with Extension support"; description = "A Python implementation of John Gruber's Markdown with Extension support";
homepage = https://github.com/Python-Markdown/markdown; homepage = "https://github.com/Python-Markdown/markdown";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
}; };
} }