depot/third_party/nixpkgs/pkgs/development/python-modules/feedgen/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
745 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
python-dateutil,
lxml,
}:
buildPythonPackage rec {
pname = "feedgen";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-2b1Rw7XpVqKlKZjDcIxNLHKfL8wxEYjh5dO5cmOTVGo=";
};
propagatedBuildInputs = [
python-dateutil
lxml
];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Python module to generate ATOM feeds, RSS feeds and Podcasts";
downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
homepage = "https://github.com/lkiesow/python-feedgen";
license = with licenses; [
bsd2
lgpl3
];
maintainers = with maintainers; [ casey ];
};
}