mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 14:52:26 +00:00
10 lines
238 B
Nix
10 lines
238 B
Nix
|
{ pyopenssl, fetchPypi }:
|
||
|
pyopenssl.overrideAttrs (old: rec {
|
||
|
pname = "pyopenssl";
|
||
|
version = "23.2.0";
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-1b4bkcpzhmablf592g21rq3l8apbhklp6wcwlvgfflm4algr6vr7";
|
||
|
};
|
||
|
})
|