Skip to content

Commit

Permalink
errbot: fix build
Browse files Browse the repository at this point in the history
Those version specs only exist to keep compat with python 3.3 which we
are not using anyway.

(cherry picked from commit 560b2bc)
  • Loading branch information
globin committed Mar 10, 2018
1 parent 3387115 commit 679580b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/applications/networking/errbot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ pythonPackages.buildPythonApplication rec {

postPatch = ''
substituteInPlace setup.py \
--replace dnspython3 dnspython
--replace dnspython3 dnspython \
--replace 'cryptography<2.1.0' cryptography \
--replace 'pyOpenSSL<17.3.0' pyOpenSSL
'';

# tests folder is not included in release
Expand Down

0 comments on commit 679580b

Please sign in to comment.