1{ lib 2, buildPythonPackage 3, fetchPypi 4, feedparser 5, httpx 6, loca 7, markdownify 8, trio 9}: 10 11buildPythonPackage rec { 12 pname = "rsskey"; 13 version = "0.2.0"; 14 format = "flit"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "sha256-QedLuwd0ES2LWhZ72Cjh3+ZZ7HbRyNsyLN9lNFbY5dQ="; 19 }; 20 21 propagatedBuildInputs = [ 22 feedparser 23 httpx 24 loca 25 markdownify 26 trio 27 ]; 28 29 doCheck = false; # upstream has no test 30 pythonImportsCheck = [ "rsskey" ]; 31 32 meta = with lib; { 33 description = "RSS feed mirror on Misskey"; 34 homepage = "https://sr.ht/~cnx/rsskey"; 35 license = licenses.agpl3Plus; 36 maintainers = with maintainers; [ McSinyx ]; 37 }; 38}