Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/pyopenssl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@

buildPythonPackage rec {
pname = "pyopenssl";
version = "22.0.0";
version = "22.1.0";

outputs = [ "out" "dev" ];

src = fetchPypi {
pname = "pyOpenSSL";
inherit version;
sha256 = "sha256-ZgsbFCWqxKG+odlBaKhdmfCzFEyGndQ5DSdinQCH8b8=";
sha256 = "sha256-eoO3snLdWVIi1nL1zimqAw8fuDdjDvIp9i5y45XOiWg=";
};

outputs = [ "out" "dev" ];
postPatch = ''
# remove cryptography pin
sed "/cryptography/ s/,<[0-9]*//g" setup.py
'';

# Seems to fail unpredictably on Darwin. See https://hydra.nixos.org/build/49877419/nixlog/1
# for one example, but I've also seen ContextTests.test_set_verify_callback_exception fail.
Expand Down