mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
0215034f25
when they already rely on SRI hashes.
39 lines
673 B
Nix
39 lines
673 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, feedparser
|
|
, httpx
|
|
, loca
|
|
, markdownify
|
|
, trio
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rsskey";
|
|
version = "0.2.0";
|
|
format = "flit";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
}
|