mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 15:41:16 +00:00
python3Packages.periodiq: 0.13.0 -> 0.14.0
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user