tahoe-lafs/nix/pyopenssl.nix

13 lines
377 B
Nix
Raw Normal View History

2023-06-05 15:30:11 +00:00
{ pyopenssl, fetchPypi, isPyPy }:
2023-06-05 14:29:57 +00:00
pyopenssl.overrideAttrs (old: rec {
pname = "pyopenssl";
version = "23.2.0";
src = fetchPypi {
inherit pname version;
2023-06-05 15:52:24 +00:00
sha256 = "1qgarxcmlrrrlyjnsry47lz04z8bviy7rrlbbp9874kdj799rckc";
2023-06-05 14:29:57 +00:00
};
2023-06-05 15:27:23 +00:00
# Building the docs requires sphinx which brings in a dependency on babel,
# the test suite of which fails.
dontBuildDocs = isPyPy;
2023-06-05 14:29:57 +00:00
})