fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
563 B
Nix
27 lines
563 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyrss2gen";
|
|
version = "1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyRSS2Gen";
|
|
inherit version;
|
|
sha256 = "1rvf5jw9hknqz02rp1vg8abgb1lpa0bc65l7ylmlillqx7bswq3r";
|
|
};
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html";
|
|
description = "Library for generating RSS 2.0 feeds";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|