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

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

  src = fetchPypi {
    inherit pname version sha256;
  };

  buildInputs = [ nose ];
  pythonImportsCheck = [ "mistune" ];

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