Sarah Clark
2025-11-28 10:45:37 -08:00
parent 3dd9929761
commit f4eea1d87c
@@ -7,32 +7,31 @@
setuptools,
# dependencies
dateparser,
haversine,
python-dateutil,
requests,
xmltodict,
# tests
# testing
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "georss-client";
version = "0.18";
version = "0.19";
pyproject = true;
src = fetchFromGitHub {
owner = "exxamalte";
repo = "python-georss-client";
tag = "v${version}";
hash = "sha256-KtndXsNvmjSGwqfKqkGAimHbapIC3I0yi4JuDh6cMzs=";
hash = "sha256-+CmauNb+5mDbZXQCd8ZxZCz6FSfEPAnktkMjvQueiO0=";
};
build-system = [ setuptools ];
dependencies = [
dateparser
haversine
python-dateutil
requests
xmltodict
];
@@ -42,7 +41,6 @@ buildPythonPackage rec {
pythonImportsCheck = [ "georss_client" ];
meta = {
broken = lib.versionAtLeast xmltodict.version "1";
description = "Python library for accessing GeoRSS feeds";
homepage = "https://github.com/exxamalte/python-georss-client";
changelog = "https://github.com/exxamalte/python-georss-client/releases/tag/${src.tag}";