blob: 0554f2018c64c86c13e6419dddb683eb142357c6 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
stdenv,
buildPythonPackage,
docutils,
fetchFromGitHub,
mock,
pydantic,
pytest-mock,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "rstcheck-core";
version = "1.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "rstcheck";
repo = "rstcheck-core";
tag = "v${version}";
hash = "sha256-D17I6pncTnrRjA/vt4lt/Bfkko3Lx58Xyti3sM0sC3s=";
};
build-system = [
setuptools
setuptools-scm
];
env = {
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-strict-prototypes";
};
dependencies = [
docutils
pydantic
];
nativeCheckInputs = [
mock
pytest-mock
pytestCheckHook
];
disabledTests = [
# https://github.com/rstcheck/rstcheck-core/issues/84
"test_check_yaml_returns_error_on_bad_code_block"
];
pythonImportsCheck = [ "rstcheck_core" ];
meta = {
description = "Library for checking syntax of reStructuredText";
homepage = "https://github.com/rstcheck/rstcheck-core";
changelog = "https://github.com/rstcheck/rstcheck-core/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|