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

31 lines
713 B
Nix
Raw Normal View History

2015-01-30 16:02:05 +00:00
{ stdenv, fetchurl, pkgs, pythonPackages }:
pythonPackages.buildPythonPackage rec {
2016-02-02 20:19:35 +00:00
version = "0.8.1";
2015-01-30 16:02:05 +00:00
name = "khard-${version}";
namePrefix = "";
src = fetchurl {
url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz";
2016-02-02 20:19:35 +00:00
sha256 = "13axfrs96isirx0c483545xdmjwwfq1k7yy92xpk7l184v71rgi1";
2015-01-30 16:02:05 +00:00
};
propagatedBuildInputs = with pythonPackages; [
configobj
vobject
argparse
];
buildInputs = with pythonPackages; [
pkgs.vdirsyncer
2016-02-02 20:19:35 +00:00
pyyaml
2015-01-30 16:02:05 +00:00
];
meta = {
homepage = https://github.com/scheibler/khard;
description = "Console carddav client";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
};
}