about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mistune/default.nix
blob: 04a0f99314b1ffec0f431ba043acdfbbf86fc7b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  pname = "mistune";
  version = "0.8.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bc10c33bfdcaa4e749b779f62f60d6e12f8215c46a292d05e486b869ae306619";
  };

  buildInputs = [ nose ];

  meta = with lib; {
    description = "The fastest markdown parser in pure Python";
    homepage = https://github.com/lepture/mistune;
    license = licenses.bsd3;
  };
}