python3Packages.periodiq: 0.13.0 -> 0.14.0

https://gitlab.com/bersace/periodiq/-/compare/v0.13.0...v0.14.0
This commit is contained in:
Martin Weinelt
2026-07-15 03:12:41 +02:00
parent 441a2bb609
commit 9694d18e84
@@ -2,7 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitLab,
poetry-core,
uv-build,
dramatiq,
pendulum,
setuptools,
@@ -13,27 +13,19 @@
buildPythonPackage rec {
pname = "periodiq";
version = "0.13.0";
version = "0.14.0";
pyproject = true;
src = fetchFromGitLab {
owner = "bersace";
repo = "periodiq";
tag = "v${version}";
hash = "sha256-Pyh/T3/HGPYyaXjyM0wkQ1V7p5ibqxE1Q62QwCIJ8To=";
hash = "sha256-XYQ0cR0gdiX7GePqpMDG/Ml0CK+SBcNbsNB99FZ/D3I=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'poetry>=0.12' 'poetry-core' \
--replace-fail 'poetry.masonry.api' 'poetry.core.masonry.api'
'';
build-system = [ uv-build ];
pythonRelaxDeps = [ "dramatiq" ];
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
dramatiq
pendulum
setuptools
@@ -52,7 +44,7 @@ buildPythonPackage rec {
meta = {
description = "Simple Scheduler for Dramatiq Task Queue";
mainProgram = "periodiq";
homepage = "https://pypi.org/project/periodiq/";
homepage = "https://gitlab.com/bersace/periodiq";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ traxys ];
};