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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.1 KiB
Nix
Raw Normal View History

2022-11-04 00:22:55 +00:00
{ lib
, python-dateutil
, buildPythonPackage
, emoji
2022-11-04 00:22:55 +00:00
, fetchFromGitHub
, freezegun
, tzdata
, py
2022-11-04 00:22:55 +00:00
, pyparsing
, pydantic
, pytest-asyncio
, pytest-benchmark
, pytest-golden
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ical";
version = "4.2.9";
2022-11-04 00:22:55 +00:00
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "allenporter";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-p1cvs+xLin2WK2zyqQFd1vWKzt+LU2mpDSieOgA7Qf8=";
2022-11-04 00:22:55 +00:00
};
propagatedBuildInputs = [
emoji
2022-11-04 00:22:55 +00:00
python-dateutil
tzdata
pydantic
pyparsing
];
nativeCheckInputs = [
2022-11-04 00:22:55 +00:00
freezegun
py
2022-11-04 00:22:55 +00:00
pytest-asyncio
pytest-benchmark
pytest-golden
pytestCheckHook
];
# https://github.com/allenporter/ical/issues/136
disabledTests = [ "test_all_zoneinfo" ];
2022-11-04 00:22:55 +00:00
pythonImportsCheck = [
"ical"
];
meta = with lib; {
description = "Library for handling iCalendar";
homepage = "https://github.com/allenporter/ical";
changelog = "https://github.com/allenporter/ical/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}