Unverified Commit 50d63a06 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

orgformat: init at 0-unstable-2024-10-23 (#394282)

parents 4519abd5 eaefd357
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage {
  pname = "orgformat";
  version = "0-unstable-2024-10-23";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "novoid";
    repo = "orgformat";
    rev = "5346cc1a5fd670981e9b1d0bbd215eb5c79040d4";
    hash = "sha256-4MnA+OzmEGN3KzjsZVwBXASiYTg529cfghpuf4owYJ8=";
  };

  build-system = [
    setuptools
  ];

  pythonImportsCheck = [
    "orgformat"
  ];

  meta = {
    description = "Utility library for providing functions to generate and modify Org mode syntax elements like links, time-stamps, or date-stamps";
    homepage = "https://github.com/novoid/orgformat";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ confusedalex ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10600,6 +10600,8 @@ self: super: with self; {
  orderly-set = callPackage ../development/python-modules/orderly-set { };
  orgformat = callPackage ../development/python-modules/orgformat { };
  orgparse = callPackage ../development/python-modules/orgparse { };
  orjson = callPackage ../development/python-modules/orjson { };