python311Packages.croniter: add changelog to meta

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-06-05 09:45:15 +02:00
parent 4e01b2eba6
commit 92f83095da

View File

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, pytestCheckHook
, python-dateutil
, pythonOlder
, pytz
, tzlocal
}:
@ -12,6 +13,8 @@ buildPythonPackage rec {
version = "1.3.15";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-kko4/aiPZ17Gg1Zn4dMqw3/w1lUJwhUnKdFv8gXjKmU=";
@ -34,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library to iterate over datetime object with cron like format";
homepage = "https://github.com/kiorky/croniter";
changelog = "https://github.com/kiorky/croniter/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};