nixpkgs/pkgs/development/python-modules/feedgen/default.nix
R. RyanTM 223d313693 python37Packages.feedgen: 0.7.0 -> 0.8.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-feedgen/versions
2019-10-03 15:08:05 -07:00

25 lines
679 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, dateutil, lxml }:
buildPythonPackage rec {
pname = "feedgen";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "0551ixbcz2gaala4gi3i8gici3haijj7dhvjsz1a61s050276m96";
};
propagatedBuildInputs = [ dateutil lxml ];
# No tests in archive
doCheck = false;
meta = with stdenv.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 ];
};
}