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

authored by dotlambda and committed by GitHub 49413d86 3cbbfb17

+6 -6
+6 -6
pkgs/development/python-modules/ical/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "ical"; 20 - version = "9.0.0"; 20 + version = "9.0.1"; 21 21 pyproject = true; 22 22 23 - disabled = pythonOlder "3.10"; 23 + disabled = pythonOlder "3.11"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "allenporter"; 27 27 repo = "ical"; 28 28 tag = version; 29 - hash = "sha256-uAk+VYrcifRkUBLcXjBPwxrOlo1EKQUnPjUmR7+9cVo="; 29 + hash = "sha256-VaFzN/Yzo0Ad1vsuZJ4P8+WWH+GtPJGOz3PWum8rLww="; 30 30 }; 31 31 32 32 build-system = [ setuptools ]; ··· 48 48 49 49 pythonImportsCheck = [ "ical" ]; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 description = "Library for handling iCalendar"; 53 53 homepage = "https://github.com/allenporter/ical"; 54 54 changelog = "https://github.com/allenporter/ical/releases/tag/${src.tag}"; 55 - license = licenses.asl20; 56 - maintainers = with maintainers; [ dotlambda ]; 55 + license = lib.licenses.asl20; 56 + maintainers = with lib.maintainers; [ dotlambda ]; 57 57 }; 58 58 }