orgparse: init at 0.4.20231004

This commit is contained in:
twitchy0 2024-03-14 19:48:27 -04:00
parent a73d982d25
commit cb9af7651e
3 changed files with 30 additions and 0 deletions

View File

@ -19945,6 +19945,12 @@
fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802";
}];
};
twitchy0 = {
email = "code@nitinpassa.com";
github = "twitchy0";
githubId = 131159000;
name = "Nitin Passa";
};
twitchyliquid64 = {
name = "Tom";
email = "twitchyliquid64@ciphersink.net";

View File

@ -0,0 +1,22 @@
{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonPackage rec {
pname = "orgparse";
version = "0.4.20231004";
src = fetchPypi {
inherit pname version;
hash = "sha256-pOOK6tq/mYiw9npmrNCCedGCILy8QioSkGDCiQu6kaA=";
};
nativeBuildInputs = [ python3Packages.setuptools-scm ];
pyproject = true;
meta = with lib; {
homepage = "https://github.com/karlicoss/orgparse";
description = "orgparse - Emacs org-mode parser in Python";
license = licenses.bsd2;
maintainers = with maintainers; [ twitchy0 ];
};
}

View File

@ -9054,6 +9054,8 @@ self: super: with self; {
orderedset = callPackage ../development/python-modules/orderedset { };
orgparse = callPackage ../development/python-modules/orgparse { };
orjson = callPackage ../development/python-modules/orjson { };
orm = callPackage ../development/python-modules/orm { };