about summary refs log tree commit diff
path: root/pkgs/applications/misc/khard/default.nix
blob: c6aad7194a2b8e1911246ef025c8ab68b854cc14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, pkgs, python2Packages }:

python2Packages.buildPythonApplication rec {
  version = "0.9.0";
  name = "khard-${version}";
  namePrefix = "";

  src = fetchurl {
    url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz";
    sha256 = "1cj6rlvbk05cfjkl1lnyvq12sb847jjwqy5j8906p2b2x4wq72qi";
  };

  propagatedBuildInputs = with python2Packages; [
    atomicwrites
    configobj
    vobject
    argparse
    pyyaml
  ];

  meta = {
    homepage = https://github.com/scheibler/khard;
    description = "Console carddav client";
    license = stdenv.lib.licenses.gpl3;
    maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
  };
}