Skip to content

Commit 8aa49da

Browse files
committed
python3Packages.aider-chat: pkgs.symlinkJoin -> python3Packages.nltk.dataDir
1 parent 0bb5be9 commit 8aa49da

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

pkgs/development/python-modules/aider-chat/default.nix

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
gitMinimal,
77
portaudio,
88
playwright-driver,
9-
symlinkJoin,
10-
nltk-data,
119
pythonOlder,
1210
pythonAtLeast,
1311
setuptools-scm,
@@ -122,13 +120,10 @@
122120
}:
123121

124122
let
125-
aider-nltk-data = symlinkJoin {
126-
name = "aider-nltk-data";
127-
paths = [
128-
nltk-data.punkt-tab
129-
nltk-data.stopwords
130-
];
131-
};
123+
aider-nltk-data = nltk.dataDir (d: [
124+
d.punkt-tab
125+
d.stopwords
126+
]);
132127

133128
version = "0.83.1";
134129
aider-chat = buildPythonPackage {

0 commit comments

Comments
 (0)