about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pathy/default.nix
diff options
context:
space:
mode:
authorMatt Melling <mattmelling@fastmail.com>2021-05-07 22:04:10 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-08 11:08:46 -0700
commit94698a56240fa906ba3e14938df89e572f462f14 (patch)
tree3828b611465dc244689ea07ace400de4cbccd750 /pkgs/development/python-modules/pathy/default.nix
parentff95da3ab50fcf593f516c24ecabef1784cbc9c8 (diff)
python3Packages.spacy: add spacy_legacy dependency
Diffstat (limited to 'pkgs/development/python-modules/pathy/default.nix')
-rw-r--r--pkgs/development/python-modules/pathy/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pathy/default.nix b/pkgs/development/python-modules/pathy/default.nix
index c65741654911e..714e6945df5f2 100644
--- a/pkgs/development/python-modules/pathy/default.nix
+++ b/pkgs/development/python-modules/pathy/default.nix
@@ -22,7 +22,8 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ smart_open typer google-cloud-storage ];
 
   postPatch = ''
-    substituteInPlace requirements.txt --replace "smart-open>=2.2.0,<4.0.0" "smart-open>=2.2.0"
+    substituteInPlace requirements.txt \
+      --replace "smart-open>=2.2.0,<4.0.0" "smart-open>=2.2.0"
   '';
 
   checkInputs = [ pytestCheckHook mock ];