2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, python3Packages, withTwitter ? false}:
|
2019-02-10 18:26:01 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "mailman-rss";
|
|
|
|
version = "0.2.4";
|
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1brrik70jyagxa9l0cfmlxvqpilwj1q655bphxnvjxyganxf4c00";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ dateutil future requests beautifulsoup4 ]
|
|
|
|
++ stdenv.lib.optional withTwitter python3Packages.twitter
|
|
|
|
;
|
|
|
|
|
|
|
|
# No tests in Pypi Tarball
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-02-10 18:26:01 +00:00
|
|
|
description = "Mailman archive -> rss converter";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/kyamagu/mailman-rss";
|
2019-02-10 18:26:01 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ samueldr ];
|
|
|
|
};
|
|
|
|
}
|