Commit f4eea1d8 authored by Sarah Clark's avatar Sarah Clark
Browse files
parent 3dd99297
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -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}";