Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 555 B view raw
1{ lib, fetchPypi, buildPythonPackage, cffi }: 2buildPythonPackage rec { 3 pname = "misaka"; 4 version = "2.1.1"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "1mzc29wwyhyardclj1vg2xsfdibg2lzb7f1azjcxi580ama55wv2"; 9 }; 10 11 propagatedBuildInputs = [ cffi ]; 12 13 # The tests require write access to $out 14 doCheck = false; 15 16 meta = with lib; { 17 description = "A CFFI binding for Hoedown, a markdown parsing library"; 18 homepage = "https://misaka.61924.nl"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ fgaz ]; 21 }; 22}