mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 22:54:17 +00:00
python3Packages.rsskey: init at 0.2.0
This commit is contained in:
parent
dec78712ca
commit
d0e1ddccb7
38
pkgs/development/python-modules/rsskey/default.nix
Normal file
38
pkgs/development/python-modules/rsskey/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user