forked from mirrors/nixpkgs
python310Packages.recurring-ical-events: init at 1.1.0b0
This commit is contained in:
parent
b03027524f
commit
0fe5017065
|
@ -0,0 +1,49 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, icalendar
|
||||
, pytz
|
||||
, python-dateutil
|
||||
, x-wr-timezone
|
||||
, pytestCheckHook
|
||||
, restructuredtext_lint
|
||||
, pygments
|
||||
, tzdata
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "recurring-ical-events";
|
||||
version = "1.1.0b0";
|
||||
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "niccokunzmann";
|
||||
repo = "python-recurring-ical-events";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-ePbyZd/l/O3p/6Mbq1kMFsktkFKpPAw/u7uUynZYP2Y=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
icalendar
|
||||
pytz
|
||||
python-dateutil
|
||||
x-wr-timezone
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
restructuredtext_lint
|
||||
pygments
|
||||
tzdata
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "recurring_ical_events" ];
|
||||
|
||||
meta = {
|
||||
description = "Repeat ICalendar events by RRULE, RDATE and EXDATE";
|
||||
homepage = "https://github.com/niccokunzmann/python-recurring-ical-events";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -9648,6 +9648,8 @@ self: super: with self; {
|
|||
|
||||
recordlinkage = callPackage ../development/python-modules/recordlinkage { };
|
||||
|
||||
recurring-ical-events = callPackage ../development/python-modules/recurring-ical-events { };
|
||||
|
||||
redbaron = callPackage ../development/python-modules/redbaron { };
|
||||
|
||||
redis = callPackage ../development/python-modules/redis { };
|
||||
|
|
Loading…
Reference in a new issue