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

45 lines
862 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgs, python3Packages }:
2015-01-30 16:57:29 +01:00
with python3Packages;
buildPythonApplication rec {
2017-02-15 13:51:05 +01:00
version = "0.9.2";
2015-01-30 16:57:29 +01:00
name = "khal-${version}";
src = fetchurl {
url = "mirror://pypi/k/khal/khal-${version}.tar.gz";
2017-02-15 13:51:05 +01:00
sha256 = "1ryh5c7408w8gpql5s9mkxkvz1ngnds3xm43p7r96ynx8prr9swp";
2015-01-30 16:57:29 +01:00
};
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [
2015-01-30 16:57:29 +01:00
atomicwrites
click
configobj
dateutil
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests_toolbelt
tzlocal
urwid
2015-07-21 19:00:03 +02:00
pkginfo
freezegun
2015-01-30 16:57:29 +01:00
];
buildInputs = [ setuptools_scm pytest pkgs.glibcLocales ];
checkPhase = ''
# py.test
'';
2015-01-30 16:57:29 +01:00
meta = with stdenv.lib; {
2015-01-30 16:57:29 +01:00
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
2015-01-30 16:57:29 +01:00
};
}