f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
793 B
Nix
29 lines
793 B
Nix
{ pythonPackages, fetchurl, lib }:
|
|
|
|
with pythonPackages;
|
|
|
|
buildPythonApplication rec {
|
|
name = "${pname}-${version}";
|
|
pname = "rss2email";
|
|
version = "3.9";
|
|
|
|
propagatedBuildInputs = [ feedparser beautifulsoup4 html2text ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/r/rss2email/${name}.tar.gz";
|
|
sha256 = "02wj9zhmc2ym8ba1i0z9pm1c622z2fj7fxwagnxbvpr1402ahmr5";
|
|
};
|
|
|
|
postInstall = ''
|
|
install -Dm 644 r2e.1 $out/share/man/man1/r2e.1
|
|
# an alias for better finding the manpage
|
|
ln -s -T r2e.1 $out/share/man/man1/rss2email.1
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|