From 437cc70c6c7e298a22cf8b9ef738f82b573966a8 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 3 Aug 2025 20:34:15 +0200 Subject: [PATCH] rsstail-py: init at 0.6.0 --- pkgs/by-name/rs/rsstail-py/package.nix | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/by-name/rs/rsstail-py/package.nix diff --git a/pkgs/by-name/rs/rsstail-py/package.nix b/pkgs/by-name/rs/rsstail-py/package.nix new file mode 100644 index 000000000000..1d9b1215a6db --- /dev/null +++ b/pkgs/by-name/rs/rsstail-py/package.nix @@ -0,0 +1,29 @@ +{ + lib, + python3, + fetchPypi, +}: +python3.pkgs.buildPythonApplication rec { + pname = "rsstail-py"; + version = "0.6.0"; + pyproject = true; + + src = fetchPypi { + pname = "rsstail"; + inherit version; + hash = "sha256-nAqk8qomG02SVq2cbQAO0MidGbxCHCk2kPNB+7YgGOQ="; + }; + + build-system = with python3.pkgs; [ setuptools ]; + + dependencies = with python3.pkgs; [ feedparser ]; + + meta = { + description = "Command-line syndication feed monitor"; + mainProgram = "rsstail"; + homepage = "https://github.com/gvalkov/rsstail.py"; + changelog = "https://github.com/gvalkov/rsstail.py/releases/tag/v${version}"; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ zoriya ]; + }; +}