587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
22 lines
556 B
Nix
22 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 ];
|
|
};
|
|
}
|