pythonPackages.gssapi: remove darwin from inputs

This commit is contained in:
Sandro Jäckel 2021-03-08 01:30:48 +01:00
parent 50b18cd9b1
commit 6acd00fc0e
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@
, decorator
, nose
, krb5Full
, darwin
, GSS
, parameterized
, shouldbe
, cython
@ -44,7 +44,7 @@ buildPythonPackage rec {
];
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.GSS
GSS
];
checkInputs = [

View File

@ -2897,7 +2897,10 @@ in {
gspread = callPackage ../development/python-modules/gspread { };
gssapi = callPackage ../development/python-modules/gssapi { inherit (pkgs) darwin krb5Full; };
gssapi = callPackage ../development/python-modules/gssapi {
inherit (pkgs) krb5Full;
inherit (pkgs.darwin.apple_sdk.frameworks) GSS;
};
gst-python = callPackage ../development/python-modules/gst-python {
inherit (pkgs) meson;