mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-10 22:43:52 +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-1qgarxcmlrrrlyjnsry47lz04z8bviy7rrlbbp9874kdj799rckc";
|
|
};
|
|
# Building the docs requires sphinx which brings in a dependency on babel,
|
|
# the test suite of which fails.
|
|
dontBuildDocs = isPyPy;
|
|
})
|