blob: 450fc225a1f3184998135ff97afd20f90fe2d69c (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
beautifulsoup4,
buildPythonPackage,
fetchFromGitHub,
html5lib,
lxml,
mock,
poetry-core,
pytestCheckHook,
requests,
}:
buildPythonPackage (finalAttrs: {
pname = "mf2py";
version = "2.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "microformats";
repo = "mf2py";
tag = "v${finalAttrs.version}";
hash = "sha256-mhJ+s1rtXEJ6DqVmiyWNEK+3cdDLpR63Q4QGmD9wVio=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
beautifulsoup4
html5lib
requests
];
nativeCheckInputs = [
lxml
mock
pytestCheckHook
];
pythonImportsCheck = [ "mf2py" ];
meta = {
description = "Microformats2 parser written in Python";
homepage = "https://microformats.org/wiki/mf2py";
changelog = "https://github.com/microformats/mf2py/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ambroisie ];
};
})
|