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

buildPythonPackage rec {
  pname = "markdown2";
  version = "2.3.5";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "8bb9a24eb2aa02f1427aabe46483f0f0215ab18c8a345315ae8e2ee3c3a09c03";
  };

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