23 lines
556 B
Nix
23 lines
556 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 ];
|
||
|
};
|
||
|
}
|