rsstail-py: init at 0.6.0 (#430751)

authored by

Sandro and committed by
GitHub
9e3ca09f e4a689c0

+29
+29
pkgs/by-name/rs/rsstail-py/package.nix
··· 1 + { 2 + lib, 3 + python3, 4 + fetchPypi, 5 + }: 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "rsstail-py"; 8 + version = "0.6.0"; 9 + pyproject = true; 10 + 11 + src = fetchPypi { 12 + pname = "rsstail"; 13 + inherit version; 14 + hash = "sha256-nAqk8qomG02SVq2cbQAO0MidGbxCHCk2kPNB+7YgGOQ="; 15 + }; 16 + 17 + build-system = with python3.pkgs; [ setuptools ]; 18 + 19 + dependencies = with python3.pkgs; [ feedparser ]; 20 + 21 + meta = { 22 + description = "Command-line syndication feed monitor"; 23 + mainProgram = "rsstail"; 24 + homepage = "https://github.com/gvalkov/rsstail.py"; 25 + changelog = "https://github.com/gvalkov/rsstail.py/releases/tag/v${version}"; 26 + license = lib.licenses.bsd3; 27 + maintainers = with lib.maintainers; [ zoriya ]; 28 + }; 29 + }