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

41 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
2019-09-14 17:42:11 +02:00
, tatsu, arrow
, pytestCheckHook, pytest-flakes
2019-09-14 17:42:11 +02:00
}:
buildPythonPackage rec {
pname = "ics";
2020-02-29 21:43:15 +01:00
version = "0.7";
2019-12-16 05:27:52 +01:00
disabled = pythonOlder "3.6";
2019-09-14 17:42:11 +02:00
src = fetchFromGitHub {
owner = "C4ptainCrunch";
repo = "ics.py";
rev = "v${version}";
2020-02-29 21:43:15 +01:00
sha256 = "0rrdc9rcxc3ys6rml81b8m8qdlisk78a34bdib0wy65hlkmyyykn";
2019-09-14 17:42:11 +02:00
};
propagatedBuildInputs = [ tatsu arrow ];
2019-12-16 05:27:52 +01:00
postPatch = ''
substituteInPlace requirements.txt \
--replace "arrow>=0.11,<0.15" "arrow"
substituteInPlace setup.cfg --replace "--pep8" ""
2019-12-16 05:27:52 +01:00
'';
checkInputs = [ pytestCheckHook pytest-flakes ];
2019-09-14 17:42:11 +02:00
meta = with lib; {
2019-09-14 17:42:11 +02: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 21:43:15 +01:00
changelog = "https://github.com/C4ptainCrunch/ics.py/releases/tag/v${version}";
2019-09-14 17:42:11 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ primeos ];
};
}