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


                                             
                    


                          
                                                                    








                                                                           
                                         



                                             
{ lib, fetchPypi, buildPythonPackage, cffi }:
buildPythonPackage rec {
  pname = "misaka";
  version = "2.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mzc29wwyhyardclj1vg2xsfdibg2lzb7f1azjcxi580ama55wv2";
  };

  propagatedBuildInputs = [ cffi ];

  # The tests require write access to $out
  doCheck = false;

  meta = with lib; {
    description = "A CFFI binding for Hoedown, a markdown parsing library";
    homepage = "https://misaka.61924.nl";
    license = licenses.mit;
    maintainers = with maintainers; [ fgaz ];
  };
}