Skip to content

Commit 0f50d5a

Browse files
committedNov 24, 2017
python.pkgs.trollius: use optionals instead of optional, fixes eval for neovim
Eval of neovim was broken at 40851a4#commitcomment-25817374.
1 parent 7a13e5a commit 0f50d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎pkgs/development/python-modules/trollius/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildPythonPackage rec {
1313

1414
buildInputs = [ mock ];
1515

16-
propagatedBuildInputs = lib.optional (isPy27 || isPyPy) [ futures ];
16+
propagatedBuildInputs = lib.optionals (isPy27 || isPyPy) [ futures ];
1717

1818
patches = [
1919
./tests.patch

0 commit comments

Comments
 (0)
Please sign in to comment.