2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
2019-09-14 16:42:11 +01:00
|
|
|
, tatsu, arrow
|
2020-12-11 02:14:06 +00:00
|
|
|
, pytestCheckHook, pytest-flakes
|
2019-09-14 16:42:11 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ics";
|
2020-02-29 20:43:15 +00:00
|
|
|
version = "0.7";
|
2019-12-16 04:27:52 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2019-09-14 16:42:11 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "C4ptainCrunch";
|
|
|
|
repo = "ics.py";
|
|
|
|
rev = "v${version}";
|
2020-02-29 20:43:15 +00:00
|
|
|
sha256 = "0rrdc9rcxc3ys6rml81b8m8qdlisk78a34bdib0wy65hlkmyyykn";
|
2019-09-14 16:42:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ tatsu arrow ];
|
|
|
|
|
2019-12-16 04:27:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace requirements.txt \
|
|
|
|
--replace "arrow>=0.11,<0.15" "arrow"
|
2020-12-11 14:20:47 +00:00
|
|
|
substituteInPlace setup.cfg --replace "--pep8" ""
|
2019-12-16 04:27:52 +00:00
|
|
|
'';
|
|
|
|
|
2020-12-11 02:14:06 +00:00
|
|
|
checkInputs = [ pytestCheckHook pytest-flakes ];
|
2019-09-14 16:42:11 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-14 16:42:11 +01:00
|
|
|
description = "Pythonic and easy iCalendar library (RFC 5545)";
|
|
|
|
longDescription = ''
|
|
|
|
Ics.py is a pythonic and easy iCalendar library. Its goals are to read and
|
|
|
|
write ics data in a developer friendly way.
|
|
|
|
'';
|
|
|
|
homepage = "http://icspy.readthedocs.org/en/stable/";
|
2020-02-29 20:43:15 +00:00
|
|
|
changelog = "https://github.com/C4ptainCrunch/ics.py/releases/tag/v${version}";
|
2019-09-14 16:42:11 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|