Unverified Commit 49413d86 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.ical: 9.0.0 -> 9.0.1 (#390308)

parents 3cbbfb17 e77db89c
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -17,16 +17,16 @@

buildPythonPackage rec {
  pname = "ical";
  version = "9.0.0";
  version = "9.0.1";
  pyproject = true;

  disabled = pythonOlder "3.10";
  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "allenporter";
    repo = "ical";
    tag = version;
    hash = "sha256-uAk+VYrcifRkUBLcXjBPwxrOlo1EKQUnPjUmR7+9cVo=";
    hash = "sha256-VaFzN/Yzo0Ad1vsuZJ4P8+WWH+GtPJGOz3PWum8rLww=";
  };

  build-system = [ setuptools ];
@@ -48,11 +48,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "ical" ];

  meta = with lib; {
  meta = {
    description = "Library for handling iCalendar";
    homepage = "https://github.com/allenporter/ical";
    changelog = "https://github.com/allenporter/ical/releases/tag/${src.tag}";
    license = licenses.asl20;
    maintainers = with maintainers; [ dotlambda ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}