nixpkgs/pkgs/development/python-modules/cmarkgfm/default.nix

26 lines
536 B
Nix
Raw Normal View History

2018-04-07 13:26:08 +00:00
{ lib, buildPythonPackage, fetchPypi, cffi, pytest }:
buildPythonPackage rec {
pname = "cmarkgfm";
2018-05-09 14:45:54 +00:00
version = "0.4.2";
2018-04-07 13:26:08 +00:00
src = fetchPypi {
inherit pname version;
2018-05-09 14:45:54 +00:00
sha256 = "f20900f16377f2109783ae9348d34bc80530808439591c3d3df73d5c7ef1a00c";
2018-04-07 13:26:08 +00:00
};
propagatedBuildInputs = [ cffi ];
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with lib; {
description = "Minimal bindings to GitHub's fork of cmark";
homepage = https://github.com/jonparrott/cmarkgfm;
license = licenses.mit;
};
}