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