calendar-cli: init at 0.12.0
This commit is contained in:
parent
b8336c2b8a
commit
870b3a3054
34
pkgs/tools/networking/calendar-cli/default.nix
Normal file
34
pkgs/tools/networking/calendar-cli/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, python3
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "calendar-cli";
|
||||||
|
version = "0.12.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tobixen";
|
||||||
|
repo = "calendar-cli";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0qjld2m7hl3dx90491pqbjcja82c1f5gwx274kss4lkb8aw0kmlv";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
icalendar
|
||||||
|
caldav
|
||||||
|
pytz
|
||||||
|
tzlocal
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
# tests require networking
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple command-line CalDav client";
|
||||||
|
homepage = "https://github.com/tobixen/calendar-cli";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
|
};
|
||||||
|
}
|
@ -1996,6 +1996,8 @@ in
|
|||||||
boost = pkgs.boost.override { python = python3; };
|
boost = pkgs.boost.override { python = python3; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
calendar-cli = callPackage ../tools/networking/calendar-cli { };
|
||||||
|
|
||||||
candle = libsForQt5.callPackage ../applications/misc/candle { };
|
candle = libsForQt5.callPackage ../applications/misc/candle { };
|
||||||
|
|
||||||
capstone = callPackage ../development/libraries/capstone { };
|
capstone = callPackage ../development/libraries/capstone { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user