blob: b5d5e556183de2f4013cd8ab9e7524b2e8341429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
cffi,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cmarkgfm";
version = "2024.11.20";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-XdAc9hl1qKVyE83vXthw6TYDLxP+k9YN32Wf+5z3PGo=";
};
propagatedNativeBuildInputs = [ cffi ];
propagatedBuildInputs = [ cffi ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "cmarkgfm" ];
meta = {
description = "Minimal bindings to GitHub's fork of cmark";
homepage = "https://github.com/jonparrott/cmarkgfm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|