python3Packages.periodiq: 0.13.0 -> 0.14.0

This commit is contained in:
Chris Moultrie
2026-03-02 11:23:09 -05:00
parent e44b628f92
commit a73b37840c

View File

@@ -2,7 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitLab,
poetry-core,
uv-build,
dramatiq,
pendulum,
setuptools,
@@ -13,27 +13,28 @@
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'
--replace-fail "uv_build>=0.11,<0.12" uv_build
'';
pythonRelaxDeps = [ "dramatiq" ];
pythonRelaxDeps = [
"dramatiq"
];
nativeBuildInputs = [ poetry-core ];
build-system = [ uv-build ];
propagatedBuildInputs = [
dependencies = [
dramatiq
pendulum
setuptools