
If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
31 lines
654 B
Nix
31 lines
654 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oncalendar";
|
|
version = "1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cuu508";
|
|
repo = "oncalendar";
|
|
tag = "v${version}";
|
|
hash = "sha256-MPKzC2QYA3tWxg19URKheAbPaiS0jXP96xR0Hyl58V0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "oncalendar" ];
|
|
|
|
meta = with lib; {
|
|
description = "Systemd OnCalendar expression parser and evaluator";
|
|
homepage = "https://github.com/cuu508/oncalendar";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ phaer ];
|
|
};
|
|
}
|