Unverified Commit f399f43a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #311353 from fabaff/ical-bump

python312Packages.ical: 8.0.1 -> 8.0.2
parents 5838f168 3cec89fc
Loading
Loading
Loading
Loading
+19 −22
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, emoji
, fetchFromGitHub
, freezegun
, tzdata
, pyparsing
, pydantic
, pytest-benchmark
, pytestCheckHook
, pythonOlder
, python-dateutil
, setuptools
, syrupy
{
  lib,
  buildPythonPackage,
  emoji,
  fetchFromGitHub,
  freezegun,
  tzdata,
  pyparsing,
  pydantic,
  pytest-benchmark,
  pytestCheckHook,
  pythonOlder,
  python-dateutil,
  setuptools,
  syrupy,
}:

buildPythonPackage rec {
  pname = "ical";
  version = "8.0.1";
  version = "8.0.2";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -25,12 +26,10 @@ buildPythonPackage rec {
    owner = "allenporter";
    repo = "ical";
    rev = "refs/tags/${version}";
    hash = "sha256-GA2Kn6OednhQtNzmIq5npN2qXVaMHCzy02Jwx7g3GBA=";
    hash = "sha256-NrnRId+bgRh31+ocWBjWE2Zo3gOvPJ2fYtOVWOWD5EY=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    python-dateutil
@@ -47,9 +46,7 @@ buildPythonPackage rec {
    syrupy
  ];

  pythonImportsCheck = [
    "ical"
  ];
  pythonImportsCheck = [ "ical" ];

  meta = with lib; {
    description = "Library for handling iCalendar";