Skip to content

Commit

Permalink
python3Packages.podgen: init at 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethancedwards8 committed Jan 8, 2025
1 parent c8693b4 commit 66fd543
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pkgs/development/python-modules/podgen/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchPypi,
python-dateutil,
lxml,
future,
tinytag,
requests,
}:

buildPythonPackage rec {
pname = "podgen";
version = "1.1.0";
format = "setuptools";

src = fetchPypi {
inherit pname version;
hash = "sha256-KhG3QnfA5odOLJer23uYEnziCVluM7cDu0umS/uccxU=";
};

propagatedBuildInputs = [
python-dateutil
lxml
future
tinytag
requests
];

pythonImportsCheck = [ "podgen" ];

meta = {
description = "Python module to generate Podcast feeds";
downloadPage = "https://github.com/tobinus/python-podgen";
homepage = "https://podgen.readthedocs.io/en/latest/";
license = with lib.licenses; [
bsd2
lgpl3
];
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10920,6 +10920,8 @@ self: super: with self; {

podcats = callPackage ../development/python-modules/podcats { };

podgen = callPackage ../development/python-modules/podgen { };

podman = callPackage ../development/python-modules/podman { };

poetry-core = callPackage ../development/python-modules/poetry-core { };
Expand Down

0 comments on commit 66fd543

Please sign in to comment.