depot/third_party/nixpkgs/pkgs/development/python-modules/mailman-rss/default.nix
Default email b96e6f4393 Project import generated by Copybara.
GitOrigin-RevId: 20887e4bbfdae3aed6bfa1f53ddf138ee325515e
2021-07-03 21:40:35 -05:00

25 lines
703 B
Nix

{ lib, python3Packages, withTwitter ? false}:
python3Packages.buildPythonApplication rec {
pname = "mailman-rss";
version = "0.2.4";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1brrik70jyagxa9l0cfmlxvqpilwj1q655bphxnvjxyganxf4c00";
};
propagatedBuildInputs = with python3Packages; [ python-dateutil future requests beautifulsoup4 ]
++ lib.optional withTwitter python3Packages.twitter
;
# No tests in Pypi Tarball
doCheck = false;
meta = with lib; {
description = "Mailman archive -> rss converter";
homepage = "https://github.com/kyamagu/mailman-rss";
license = licenses.mit;
maintainers = with maintainers; [ samueldr ];
};
}