Skip to content

Commit

Permalink
twisted: remove pyOpenSSL dependency on aarch64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-d committed Jul 7, 2022
1 parent 312ad6d commit ddcb3f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/twisted/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ buildPythonPackage rec {
pyhamcrest
]
++ passthru.optional-dependencies.conch
++ passthru.optional-dependencies.tls;
# not supported on aarch64-darwin: https://github.com/pyca/pyopenssl/issues/873
++ lib.optionals (!(stdenv.isDarwin && stdenv.isAarch64)) passthru.optional-dependencies.tls;

checkPhase = ''
export SOURCE_DATE_EPOCH=315532800
Expand Down

0 comments on commit ddcb3f9

Please sign in to comment.