1{ 2 lib, 3 python3Packages, 4 fetchPypi, 5}: 6 7python3Packages.buildPythonPackage rec { 8 pname = "orgparse"; 9 version = "0.4.20231004"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-pOOK6tq/mYiw9npmrNCCedGCILy8QioSkGDCiQu6kaA="; 14 }; 15 16 nativeBuildInputs = [ python3Packages.setuptools-scm ]; 17 18 pyproject = true; 19 20 meta = with lib; { 21 homepage = "https://github.com/karlicoss/orgparse"; 22 description = "orgparse - Emacs org-mode parser in Python"; 23 license = licenses.bsd2; 24 maintainers = with maintainers; [ twitchy0 ]; 25 }; 26}