755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
65 lines
1.6 KiB
Nix
65 lines
1.6 KiB
Nix
{ lib
|
|
, pythonPackages
|
|
, fetchPypi
|
|
, fetchpatch2
|
|
, nixosTests
|
|
}:
|
|
|
|
with pythonPackages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "rss2email";
|
|
version = "3.14";
|
|
|
|
propagatedBuildInputs = [ feedparser html2text ];
|
|
nativeCheckInputs = [ beautifulsoup4 ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-RwORS2PHquxBZLNKqCJtR5XX4SHqPCb/Fn+Y68dfI/g=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch2 {
|
|
name = "html2text-2024.2.25-compat.patch";
|
|
url = "https://github.com/rss2email/rss2email/commit/b5c0e78006c2db6929b5ff50e8529de58a00412a.patch";
|
|
hash = "sha256-edmsi3I0acx5iF9xoAS9deSexqW2UtWZR/L7CgeZs/M=";
|
|
})
|
|
];
|
|
|
|
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/
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
env PATH=$out/bin:$PATH python ./test/test.py
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool that converts RSS/Atom newsfeeds to email";
|
|
homepage = "https://pypi.python.org/pypi/rss2email";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ ekleog ];
|
|
mainProgram = "r2e";
|
|
};
|
|
passthru.tests = {
|
|
smoke-test = nixosTests.rss2email;
|
|
};
|
|
}
|