khal: 0.11.3 -> 0.13.0 (#397896)

authored by Gaétan Lepage and committed by GitHub 697cf894 e139dbfa

+9 -36
+9 -36
pkgs/by-name/kh/khal/package.nix
··· 4 4 fetchFromGitHub, 5 5 glibcLocales, 6 6 installShellFiles, 7 - python3, 7 + python3Packages, 8 8 }: 9 9 10 - let 11 - python = python3.override { 12 - packageOverrides = self: super: { 13 - # https://github.com/pimutils/khal/issues/1361 14 - icalendar = super.icalendar.overridePythonAttrs (old: rec { 15 - version = "5.0.13"; 16 - src = fetchFromGitHub { 17 - owner = "collective"; 18 - repo = "icalendar"; 19 - tag = "v${version}"; 20 - hash = "sha256-2gpWfLXR4HThw23AWxY2rY9oiK6CF3Qiad8DWHCs4Qk="; 21 - }; 22 - patches = [ ]; 23 - build-system = with self; [ setuptools ]; 24 - dependencies = with self; [ 25 - python-dateutil 26 - pytz 27 - ]; 28 - }); 29 - }; 30 - }; 31 - in 32 - python.pkgs.buildPythonApplication rec { 10 + python3Packages.buildPythonApplication rec { 33 11 pname = "khal"; 34 - version = "0.11.3"; 12 + version = "0.13.0"; 35 13 pyproject = true; 36 14 37 15 src = fetchFromGitHub { 38 16 owner = "pimutils"; 39 17 repo = "khal"; 40 18 tag = "v${version}"; 41 - hash = "sha256-YP2kQ/qXPDwvFvlHf+A2Ymvk49dmt5tAnTaOhrOV92M="; 19 + hash = "sha256-pbBdScyYQMdT2NjCk2dKPkR75Zcizzco2IkXpHkgPR8="; 42 20 }; 43 21 44 - postPatch = '' 45 - sed -i /intersphinx/d doc/source/conf.py 46 - ''; 47 - 48 - build-system = with python.pkgs; [ 22 + build-system = with python3Packages; [ 49 23 setuptools 50 24 setuptools-scm 51 25 ]; ··· 55 29 installShellFiles 56 30 ]; 57 31 58 - dependencies = with python.pkgs; [ 59 - atomicwrites 32 + dependencies = with python3Packages; [ 60 33 click 61 34 click-log 62 35 configobj ··· 73 46 urwid 74 47 ]; 75 48 76 - nativeCheckInputs = with python.pkgs; [ 49 + nativeCheckInputs = with python3Packages; [ 77 50 freezegun 78 51 hypothesis 79 52 packaging ··· 90 63 91 64 # man page 92 65 PATH="${ 93 - python3.withPackages ( 66 + python3Packages.python.withPackages ( 94 67 ps: with ps; [ 95 68 sphinx 96 69 sphinxcontrib-newsfeed ··· 120 93 homepage = "https://lostpackets.de/khal/"; 121 94 changelog = "https://github.com/pimutils/khal/releases/tag/v${version}"; 122 95 license = lib.licenses.mit; 123 - maintainers = with lib.maintainers; [ ]; 96 + maintainers = with lib.maintainers; [ antonmosich ]; 124 97 }; 125 98 }