15 buildPythonPackage rec {
20 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
23 owner = "microformats";
25 rev = "refs/tags/v${version}";
26 hash = "sha256-mhJ+s1rtXEJ6DqVmiyWNEK+3cdDLpR63Q4QGmD9wVio=";
29 nativeBuildInputs = [ poetry-core ];
31 propagatedBuildInputs = [
43 pythonImportsCheck = [ "mf2py" ];
46 description = "Microformats2 parser written in Python";
47 homepage = "https://microformats.org/wiki/mf2py";
48 changelog = "https://github.com/microformats/mf2py/blob/v${version}/CHANGELOG.md";
49 license = licenses.mit;
50 maintainers = with maintainers; [ ambroisie ];