Files
nixpkgs/pkgs/development/python-modules/feedgenerator/default.nix
T
Martin Weinelt b904ee4cce python3Packages.feedgenerator: 2.1.0 -> 2.2.0
This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:24 +02:00

36 lines
675 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "feedgenerator";
version = "2.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-KXb2zMWYmpZyAto0PqFFwhrtq74ANccIjWS6CqlyWmA=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "feedgenerator" ];
meta = with lib; {
description = "Standalone version of Django's feedgenerator module";
homepage = "https://github.com/getpelican/feedgenerator";
license = licenses.bsd3;
maintainers = [ ];
};
}