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







                        
                    


                          
                                                                                









                                                               
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e";
  };

  buildInputs = [ nose ];

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