python3Packages.rsskey: init at 0.2.0

This commit is contained in:
Nguyễn Gia Phong 2022-08-04 18:12:31 +09:00
parent dec78712ca
commit d0e1ddccb7
No known key found for this signature in database
GPG Key ID: 27148B2C06A2224B
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, feedparser
, httpx
, loca
, markdownify
, trio
}:
buildPythonPackage rec {
pname = "rsskey";
version = "0.2.0";
format = "flit";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-QedLuwd0ES2LWhZ72Cjh3+ZZ7HbRyNsyLN9lNFbY5dQ=";
};
propagatedBuildInputs = [
feedparser
httpx
loca
markdownify
trio
];
doCheck = false; # upstream has no test
pythonImportsCheck = [ "rsskey" ];
meta = with lib; {
description = "RSS feed mirror on Misskey";
homepage = "https://sr.ht/~cnx/rsskey";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ McSinyx ];
};
}

View File

@ -9663,6 +9663,8 @@ in {
rsa = callPackage ../development/python-modules/rsa { };
rsskey = callPackage ../development/python-modules/rsskey { };
rst2ansi = callPackage ../development/python-modules/rst2ansi { };
rstcheck = callPackage ../development/python-modules/rstcheck { };