pythonPackages.markdown2: 2.3.0 -> 2.3.1

This commit is contained in:
Jörg Thalheim
2017-01-14 00:09:18 +01:00
parent 1f5b7484a3
commit 1094e948bf
2 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchurl }:
buildPythonPackage rec {
name = "markdown2-${version}";
version = "2.3.1";
src = fetchurl {
url = "mirror://pypi/m/markdown2/${name}.zip";
sha256 = "03nqcx79r9lr5gp2zpqa1n54hnxqczdq27f2j3aazr3r9rsxsqs4";
};
meta = with stdenv.lib; {
description = "A fast and complete Python implementation of Markdown";
homepage = https://github.com/trentm/python-markdown2;
license = licenses.mit;
maintainers = with maintainers; [ hbunke ];
};
}