about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-17 03:25:50 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-23 01:09:33 +0100
commitebcfdb4d62cfcc42fed091e1b3847530c9169c1d (patch)
treeffe072a043526c2b369cf7a38e765cca503bab7a
parent132d2ef47d8c2d5cb93039aeb31a2083e0a91fcc (diff)
python3Packages.pyflunearyou: relax ujson constraint
-rw-r--r--pkgs/development/python-modules/pyflunearyou/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyflunearyou/default.nix b/pkgs/development/python-modules/pyflunearyou/default.nix
index 99506de1026a1..a481e9a97a893 100644
--- a/pkgs/development/python-modules/pyflunearyou/default.nix
+++ b/pkgs/development/python-modules/pyflunearyou/default.nix
@@ -27,6 +27,11 @@ buildPythonPackage rec {
     sha256 = "sha256-Q65OSE4qckpvaIvZULBR434i7hwuVM97eSq1Blb1oIU=";
   };
 
+  postPatch = ''
+    substituteInPlace pyproject.toml \
+      --replace 'ujson = ">=1.35,<5.0"' 'ujson = "*"'
+  '';
+
   nativeBuildInputs = [
     poetry-core
   ];