blob: 33c598df4a768f04054c13ddbb8d55e5d85cd684 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "orgparse";
version = "0.4.20251020";
pyproject = true;
src = fetchFromGitHub {
owner = "karlicoss";
repo = "orgparse";
tag = "v${version}";
hash = "sha256-RJ+1HVI9OgbylBxdEztpQ4v0MG0PUFqXlFfe0vsDaTg=";
};
build-system = [
hatchling
hatch-vcs
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "orgparse" ];
preCheck = ''
rm conftest.py
'';
disabledTestPaths = [
# Ignoring doc folder
"doc/"
];
disabledTests = [
# AssertionError
"test_data[01_attributes]"
"test_data[03_repeated_tasks]"
"test_data[04_logbook]"
"test_level_0_timestamps"
];
meta = {
description = "Emacs org-mode parser in Python";
homepage = "https://github.com/karlicoss/orgparse";
changelog = "https://github.com/karlicoss/orgparse/releases/tag/${src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ twitchy0 ];
};
}
|