mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
0b0e5c5c93
It does the necessary overrides for stopping doc builds and excluding certain inputs and outputs. We can't just set `dontBuildDocs` in the derivation because that's not a setting recognized by the Nixpkgs Python build system.
11 lines
263 B
Nix
11 lines
263 B
Nix
{ pyopenssl, fetchPypi, isPyPy }:
|
|
pyopenssl.overrideAttrs (old: rec {
|
|
pname = "pyOpenSSL";
|
|
version = "23.2.0";
|
|
name = "${pname}-${version}";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "J2+TH1WkUufeppxxc+mE6ypEB85BPJGKo0tV+C+bi6w=";
|
|
};
|
|
})
|