summary refs log tree commit diff
path: root/pkgs/development/python-modules/misaka/default.nix
blob: b40aead390904eee76818a9b245615fc331f7b2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchPypi, buildPythonPackage, cffi }:
buildPythonPackage rec {
  pname = "misaka";
  version = "2.1.0";

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

  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 = "http://misaka.61924.nl/";
    license = licenses.mit;
    maintainers = with maintainers; [ fgaz ];
  };
}