summary refs log tree commit diff
path: root/pkgs/development/python-modules/markdown2.nix
blob: f614eb0747bba3e74569f47a54bed60782950007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchurl }:

buildPythonPackage rec {
  pname = "markdown2";
  version = "2.3.4";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "mirror://pypi/m/markdown2/${name}.zip";
    sha256 = "264731e7625402227ff6fb01f2d814882da7705432659a18a419c508e8bfccb1";
  };

  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 ];
  };
}