summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2024-03-14 17:04:18 -0700
committerGitHub <noreply@github.com>2024-03-14 17:04:18 -0700
commitb188cc65d276214562fb5ed6b315e3e46a8c2a2e (patch)
tree7c23e212304dca44e78bf6e93898e3d568bf8bef
parentMerge pull request #295934 from pbsds/bump-polaris-1710429726 (diff)
parentorgparse: init at 0.4.20231004 (diff)
downloadnixpkgs-b188cc65d276214562fb5ed6b315e3e46a8c2a2e.tar.gz
Merge pull request #295993 from twitchy0/orgparse
orgparse: init at 0.4.20231004
-rw-r--r--maintainers/maintainer-list.nix6
-rw-r--r--pkgs/development/python-modules/orgparse/default.nix22
-rw-r--r--pkgs/top-level/python-packages.nix2
3 files changed, 30 insertions, 0 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index a05c01bc9df9..ef3ce19da9c8 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -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";
diff --git a/pkgs/development/python-modules/orgparse/default.nix b/pkgs/development/python-modules/orgparse/default.nix
new file mode 100644
index 000000000000..67988d5529ff
--- /dev/null
+++ b/pkgs/development/python-modules/orgparse/default.nix
@@ -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 ];
+ };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 2288c87f86f3..19a56ac7ff08 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -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 { };