Skip to content

Commit

Permalink
python.pkgs.trollius: use optionals instead of optional, fixes eval f…
Browse files Browse the repository at this point in the history
…or neovim

Eval of neovim was broken at
40851a4#commitcomment-25817374.
  • Loading branch information
FRidh committed Nov 24, 2017
1 parent 7a13e5a commit 0f50d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/trollius/default.nix
Expand Up @@ -13,7 +13,7 @@ buildPythonPackage rec {

buildInputs = [ mock ];

propagatedBuildInputs = lib.optional (isPy27 || isPyPy) [ futures ];
propagatedBuildInputs = lib.optionals (isPy27 || isPyPy) [ futures ];

patches = [
./tests.patch
Expand Down

0 comments on commit 0f50d5a

Please sign in to comment.