summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeona Maroni <dev@leona.is>2024-04-18 23:08:12 +0200
committerGitHub <noreply@github.com>2024-04-18 23:08:12 +0200
commitd9ec9a35dfcc45be442a038fde944221e843ab28 (patch)
treefe7bf6f9dae22b5b64ac1786b4c5c13537cedc20
parent3610489cd2578b6cd598611695fa00f9a7e67164 (diff)
parent1c614c0e19fc9c44fb224f4729d7c0df064cf83d (diff)
Merge pull request #300086 from traxys/periodiq_relax
python312Packages.periodiq: Relax pendulum dependency
-rw-r--r--pkgs/development/python-modules/periodiq/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/periodiq/default.nix b/pkgs/development/python-modules/periodiq/default.nix
index 478168de30d0..2d14561d120d 100644
--- a/pkgs/development/python-modules/periodiq/default.nix
+++ b/pkgs/development/python-modules/periodiq/default.nix
@@ -26,6 +26,7 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
+ --replace 'pendulum = "^2.0"' 'pendulum = "*"' \
--replace 'poetry>=0.12' 'poetry-core' \
--replace 'poetry.masonry.api' 'poetry.core.masonry.api'
'';