about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/markdown2/default.nix
blob: 8add8f15298f8b0c5c91715a284403250a58e5ba (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.6";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "08a124043aa0ad36ba2136239547d5011a2b770278abb11a5609611e0040ea05";
  };

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