Files
nixpkgs/pkgs/development/python-modules/orgparse/default.nix
2025-09-27 21:35:46 +02:00

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "orgparse";
version = "0.4.20250520";
pyproject = true;
src = fetchFromGitHub {
owner = "karlicoss";
repo = "orgparse";
tag = "v${version}";
hash = "sha256-y3mkGCZvikbmymgvPOWq4GLxoFmslXGm/cxR2PZ6DRM=";
};
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 = with lib; {
description = "Emacs org-mode parser in Python";
homepage = "https://github.com/karlicoss/orgparse";
changelog = "https://github.com/karlicoss/orgparse/releases/tag/${src.tag}";
license = licenses.bsd2;
maintainers = with maintainers; [ twitchy0 ];
};
}