summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-13 11:36:48 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-20 20:46:23 +0100
commit936386b0c1b2e39eac38060403a1400109b3f1af (patch)
treeca59c19e8ad56221d3e7e558c367c93991324c1e
parentab831050765a0ef6e286e6f94f8c806568cb25e6 (diff)
python2Packages.wcwidth: fix eval
-rw-r--r--pkgs/development/python2-modules/wcwidth/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python2-modules/wcwidth/default.nix b/pkgs/development/python2-modules/wcwidth/default.nix
index 8424fa462503..023b92a86907 100644
--- a/pkgs/development/python2-modules/wcwidth/default.nix
+++ b/pkgs/development/python2-modules/wcwidth/default.nix
@@ -3,7 +3,7 @@
}:
wcwidth.overridePythonAttrs(oldAttrs: {
- propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
+ propagatedBuildInputs = oldAttrs.propagatedBuildInputs or [] ++ [
backports-functools-lru-cache
];
})