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