1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6}:
7
8buildPythonPackage {
9 pname = "orgformat";
10 version = "0-unstable-2024-10-23";
11 pyproject = true;
12
13 src = fetchFromGitHub {
14 owner = "novoid";
15 repo = "orgformat";
16 rev = "5346cc1a5fd670981e9b1d0bbd215eb5c79040d4";
17 hash = "sha256-4MnA+OzmEGN3KzjsZVwBXASiYTg529cfghpuf4owYJ8=";
18 };
19
20 build-system = [
21 setuptools
22 ];
23
24 pythonImportsCheck = [
25 "orgformat"
26 ];
27
28 meta = {
29 description = "Utility library for providing functions to generate and modify Org mode syntax elements like links, time-stamps, or date-stamps";
30 homepage = "https://github.com/novoid/orgformat";
31 license = lib.licenses.gpl3Only;
32 maintainers = with lib.maintainers; [ confusedalex ];
33 };
34}