python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / feedgen / default.nix
blobe6b7866b0cd0df6b4280857d694c31cb6dce4ca9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   python-dateutil,
6   lxml,
7 }:
9 buildPythonPackage rec {
10   pname = "feedgen";
11   version = "1.0.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-2b1Rw7XpVqKlKZjDcIxNLHKfL8wxEYjh5dO5cmOTVGo=";
17   };
19   propagatedBuildInputs = [
20     python-dateutil
21     lxml
22   ];
24   # No tests in archive
25   doCheck = false;
27   meta = with lib; {
28     description = "Python module to generate ATOM feeds, RSS feeds and Podcasts";
29     downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
30     homepage = "https://github.com/lkiesow/python-feedgen";
31     license = with licenses; [
32       bsd2
33       lgpl3
34     ];
35     maintainers = with maintainers; [ casey ];
36   };