nixpkgs/pkgs/applications/misc/khal/default.nix

60 lines
1.2 KiB
Nix
Raw Normal View History

2018-06-29 16:57:30 +00:00
{ stdenv, pkgs, python3 }:
2015-01-30 15:57:29 +00:00
2018-06-29 16:57:30 +00:00
let
python = python3.override {
packageOverrides = self: super: {
2018-06-29 16:57:30 +00:00
# https://github.com/pimutils/khal/issues/780
python-dateutil = super.python-dateutil.overridePythonAttrs (oldAttrs: rec {
version = "2.6.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "891c38b2a02f5bb1be3e4793866c8df49c7d19baabf9c1bad62547e0b4866aca";
};
});
};
};
in with python.pkgs; buildPythonApplication rec {
2017-09-21 11:50:32 +00:00
pname = "khal";
version = "0.9.9";
2015-01-30 15:57:29 +00:00
2017-09-21 11:50:32 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0dq9aqb9pqjfqrnfg43mhpb7m0szmychxy1ydb3lwzf3500c9rsh";
2015-01-30 15:57:29 +00:00
};
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [
2015-01-30 15:57:29 +00:00
atomicwrites
click
configobj
dateutil
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests_toolbelt
tzlocal
urwid
2015-07-21 17:00:03 +00:00
pkginfo
freezegun
2015-01-30 15:57:29 +00:00
];
2018-06-29 16:57:30 +00:00
nativeBuildInputs = [ setuptools_scm pkgs.glibcLocales ];
checkInputs = [ pytest ];
checkPhase = ''
2018-06-29 16:57:30 +00:00
py.test
'';
2015-01-30 15:57:29 +00:00
meta = with stdenv.lib; {
2015-01-30 15:57:29 +00:00
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = licenses.mit;
maintainers = with maintainers; [ jgeerds ];
2015-01-30 15:57:29 +00:00
};
}