mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
4fd22b6a70
This is required because vdirsyncer does not depend on it at runtime anymore.
36 lines
820 B
Nix
36 lines
820 B
Nix
{ stdenv, fetchurl, pkgs, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
version = "0.7.0";
|
|
name = "khal-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://pypi.python.org/packages/source/k/khal/khal-${version}.tar.gz";
|
|
sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
atomicwrites
|
|
click
|
|
configobj
|
|
dateutil
|
|
icalendar
|
|
lxml
|
|
pkgs.vdirsyncer
|
|
pytz
|
|
pyxdg
|
|
requests_toolbelt
|
|
tzlocal
|
|
urwid
|
|
pkginfo
|
|
];
|
|
buildInputs = with python3Packages; [ setuptools_scm ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://lostpackets.de/khal/;
|
|
description = "CLI calendar application";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
|
|
};
|
|
}
|