nixpkgs/pkgs/development/python-modules/rsskey/default.nix
2023-09-22 21:11:22 +02:00

44 lines
734 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, feedparser
, httpx
, loca
, markdownify
, trio
}:
buildPythonPackage rec {
pname = "rsskey";
version = "0.2.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-QedLuwd0ES2LWhZ72Cjh3+ZZ7HbRyNsyLN9lNFbY5dQ=";
};
nativeBuildInputs = [
flit-core
];
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 ];
};
}