nixpkgs/pkgs/development/python-modules/misaka/default.nix
R. RyanTM 873cf894f8 python37Packages.misaka: 2.1.0 -> 2.1.1 (#52093)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-misaka/versions
2018-12-14 21:08:16 +01:00

23 lines
555 B
Nix

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