nixpkgs/pkgs/development/python-modules/orgparse/default.nix
Martin Weinelt 7293d95ede
python3Packages.orgparse: 0.4.20231004 -> 0.4.20250520
This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:12 +02:00

27 lines
552 B
Nix

{
lib,
setuptools-scm,
fetchPypi,
buildPythonPackage,
}:
buildPythonPackage rec {
pname = "orgparse";
version = "0.4.20250520";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZHL9Ft3Ku1I5GFBchlJjq/oFrIC1k+ZooInNopGxot4=";
};
nativeBuildInputs = [ 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 ];
};
}