feeds: Rename to gnome-feeds

Make it reach repology's `gnome-feeds` project:

https://repology.org/project/gnome-feeds
This commit is contained in:
Doron Behar
2021-04-13 09:26:32 +03:00
parent a73020b2a1
commit 72341ac04e
3 changed files with 4 additions and 3 deletions
@@ -0,0 +1,31 @@
{ lib
, python3
}:
python3.pkgs.buildPythonPackage rec {
pname = "listparser";
version = "0.18";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "0hdqs1mmayw1r8yla43hgb4d9y3zqs5483vgf8j9ygczkd2wrq2b";
};
propagatedBuildInputs = with python3.pkgs; [
requests
six
];
checkPhase = ''
${python3.interpreter} lptest.py
'';
meta = with lib; {
description = "A parser for subscription lists";
homepage = "https://github.com/kurtmckee/listparser";
license = licenses.lgpl3Plus;
maintainers = [
maintainers.pbogdan
];
platforms = platforms.linux;
};
}