mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
cf8909a2b5
The latest version 404s ?
11 lines
263 B
Nix
11 lines
263 B
Nix
{ pyopenssl, fetchPypi, isPyPy }:
|
|
pyopenssl.overrideAttrs (old: rec {
|
|
pname = "pyOpenSSL";
|
|
version = "24.1.0";
|
|
name = "${pname}-${version}";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "yr7Uv6pd+fGhbA72Sgy2Uxi1zQd6ftp9aXATHKL0Gm8=";
|
|
};
|
|
})
|