about summary refs log tree commit diff
path: root/pkgs/development/python-modules/markdown2.nix
blob: e5c22bc4dc6c3fb255c09658493d0faf14c07a89 (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.1";
  name = "${pname}-${version}";

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