mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 11:56:33 +01:00
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
42 lines
733 B
Nix
42 lines
733 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
flit-core,
|
|
feedparser,
|
|
httpx,
|
|
loca,
|
|
markdownify,
|
|
trio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rsskey";
|
|
version = "0.2.0";
|
|
pyproject = true;
|
|
|
|
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 = {
|
|
description = "RSS feed mirror on Misskey";
|
|
homepage = "https://sr.ht/~cnx/rsskey";
|
|
license = lib.licenses.agpl3Plus;
|
|
maintainers = with lib.maintainers; [ McSinyx ];
|
|
};
|
|
}
|