Files
nixpkgs/pkgs/development/python-modules/cron-descriptor/default.nix
T
2025-12-17 00:13:38 +08:00

39 lines
863 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pytestCheckHook,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "cron-descriptor";
version = "2.0.6";
pyproject = true;
src = fetchFromGitHub {
owner = "Salamek";
repo = "cron-descriptor";
tag = version;
hash = "sha256-f7TQ3wvcHrzefZowUvxl1T0LCGeCnvpPI/IZn4XcDa4=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
typing-extensions
];
pythonImportsCheck = [ "cron_descriptor" ];
meta = {
description = "Library that converts cron expressions into human readable strings";
homepage = "https://github.com/Salamek/cron-descriptor";
changelog = "https://github.com/Salamek/cron-descriptor/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ phaer ];
};
}