Files
nixpkgs/pkgs/development/python-modules/pyrss2gen/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

28 lines
534 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 = [ ];
};
}