summary refs log blame commit diff
path: root/pkgs/development/python-modules/markdown2.nix
blob: af7511bc9aa313dfda0c9705608ad6d2fee74d22 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}