mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ pythonPackages, fetchurl, lib, nixosTests }:
|
|
|
|
with pythonPackages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "rss2email";
|
|
version = "3.11";
|
|
|
|
propagatedBuildInputs = [ feedparser beautifulsoup4 html2text ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/r/rss2email/${pname}-${version}.tar.gz";
|
|
sha256 = "1vk5slp2mhmc1qj30igqkyq3z5h2bl1ayhafqrjapa6cg6rbvhrn";
|
|
};
|
|
|
|
outputs = [ "out" "man" "doc" ];
|
|
|
|
postPatch = ''
|
|
# sendmail executable is called from PATH instead of sbin by default
|
|
sed -e 's|/usr/sbin/sendmail|sendmail|' \
|
|
-i rss2email/config.py
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm 644 r2e.1 $man/share/man/man1/r2e.1
|
|
# an alias for better finding the manpage
|
|
ln -s -T r2e.1 $man/share/man/man1/rss2email.1
|
|
|
|
# copy documentation
|
|
mkdir -p $doc/share/doc/rss2email
|
|
cp AUTHORS COPYING CHANGELOG README.rst $doc/share/doc/rss2email/
|
|
'';
|
|
|
|
postCheck = ''
|
|
env PATH=$out/bin:$PATH python ./test/test.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool that converts RSS/Atom newsfeeds to email.";
|
|
homepage = https://pypi.python.org/pypi/rss2email;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ jb55 Profpatsch ];
|
|
};
|
|
passthru.tests = {
|
|
smoke-test = nixosTests.rss2email;
|
|
};
|
|
}
|