tahoe-lafs/nix/pyopenssl.nix
Itamar Turner-Trauring 203fd84a88 Need to import it.
2023-06-05 11:30:11 -04:00

13 lines
384 B
Nix

{ pyopenssl, fetchPypi, isPyPy }:
pyopenssl.overrideAttrs (old: rec {
pname = "pyopenssl";
version = "23.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-1b4bkcpzhmablf592g21rq3l8apbhklp6wcwlvgfflm4algr6vr7";
};
# Building the docs requires sphinx which brings in a dependency on babel,
# the test suite of which fails.
dontBuildDocs = isPyPy;
})