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