source: trunk/nix/pyopenssl.nix

Last change on this file was 0b0e5c5, checked in by Jean-Paul Calderone <exarkun@…>, at 2023-06-13T14:34:36Z

Keep using our dontBuildDocs helper function

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.

  • Property mode set to 100644
File size: 263 bytes
Line 
1{ pyopenssl, fetchPypi, isPyPy }:
2pyopenssl.overrideAttrs (old: rec {
3  pname = "pyOpenSSL";
4  version = "23.2.0";
5  name = "${pname}-${version}";
6  src = fetchPypi {
7    inherit pname version;
8    sha256 = "J2+TH1WkUufeppxxc+mE6ypEB85BPJGKo0tV+C+bi6w=";
9  };
10})
Note: See TracBrowser for help on using the repository browser.