summary refs log blame commit diff
path: root/pkgs/development/python-modules/mistune/common.nix
blob: 9610b735c79bc763e1330491f69ec18d95d5e3d9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                                     

                        
                         






                                 
                                     






                                                               
{ lib, buildPythonPackage, fetchPypi, nose, version, sha256, format ? "setuptools" }:

buildPythonPackage rec {
  inherit version format;
  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;
  };
}