mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
13 lines
384 B
Nix
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;
|
|
})
|