python3Packages.feedgenerator: 2.1.0 -> 2.2.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-09 18:59:24 +02:00
parent a7c67d0d68
commit b904ee4cce
2 changed files with 10 additions and 23 deletions
@@ -2,39 +2,28 @@
lib,
buildPythonPackage,
fetchPypi,
glibcLocales,
hatchling,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
pytz,
six,
}:
buildPythonPackage rec {
pname = "feedgenerator";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
version = "2.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-8HXyPyj9In8JfDayEhYcbPAS4cbKr3/1PV1rsCzUK50=";
hash = "sha256-KXb2zMWYmpZyAto0PqFFwhrtq74ANccIjWS6CqlyWmA=";
};
postPatch = ''
sed -i '/cov/d' setup.cfg
'';
build-system = [ hatchling ];
buildInputs = [ glibcLocales ];
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [
pytz
six
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "feedgenerator" ];
meta = with lib; {
+1 -3
View File
@@ -5039,9 +5039,7 @@ self: super: with self; {
feedgen = callPackage ../development/python-modules/feedgen { };
feedgenerator = callPackage ../development/python-modules/feedgenerator {
inherit (pkgs) glibcLocales;
};
feedgenerator = callPackage ../development/python-modules/feedgenerator { };
feedparser = callPackage ../development/python-modules/feedparser { };