nixpkgs/pkgs/development/python-modules/ics/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2019-09-14 16:42:11 +01:00
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
, tatsu, arrow
2020-07-07 13:48:09 +01:00
, pytestCheckHook, pytestpep8, 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-07-07 13:48:09 +01:00
checkInputs = [ pytestCheckHook pytestpep8 pytest-flakes ];
2019-09-14 16:42:11 +01:00
meta = with stdenv.lib; {
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 ];
};
}