about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-03 07:43:49 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-03 07:49:32 -0700
commit809de4d2107ce19971a8f577dbbb5436b3adcacc (patch)
treef86738fd28c22d2cf6359ed4669354ce7ce31159 /pkgs/development/python2-modules
parent9058cdef7d8435fd92fbee5990eaf11fe26dfc26 (diff)
downloadnixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.tar
nixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.tar.gz
nixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.tar.bz2
nixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.tar.lz
nixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.tar.xz
nixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.tar.zst
nixlib-809de4d2107ce19971a8f577dbbb5436b3adcacc.zip
python2.pkgs.wcwidth: add missing python2 dependency
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/wcwidth/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/python2-modules/wcwidth/default.nix b/pkgs/development/python2-modules/wcwidth/default.nix
new file mode 100644
index 000000000000..8424fa462503
--- /dev/null
+++ b/pkgs/development/python2-modules/wcwidth/default.nix
@@ -0,0 +1,10 @@
+{ backports-functools-lru-cache
+, wcwidth
+}:
+
+wcwidth.overridePythonAttrs(oldAttrs: {
+  propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
+    backports-functools-lru-cache
+  ];
+})
+