fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
26 lines
563 B
Nix
26 lines
563 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|