80 lines
1.8 KiB
Nix
80 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, six
|
|
, decorator
|
|
, nose
|
|
, krb5Full
|
|
, GSS
|
|
, parameterized
|
|
, shouldbe
|
|
, cython
|
|
, python
|
|
, k5test
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gssapi";
|
|
version = "1.6.12";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pythongssapi";
|
|
repo = "python-${pname}";
|
|
rev = "v${version}";
|
|
sha256 = "0r6w52vji1095n3wgzjz9ddaqsvsf3f4gal0rv5i62hpqwlbzkn7";
|
|
};
|
|
|
|
# It's used to locate headers
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace 'get_output(f"{kc} gssapi --prefix")' '"${lib.getDev krb5Full}"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
krb5Full
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
decorator
|
|
six
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
GSS
|
|
];
|
|
|
|
checkInputs = [
|
|
k5test
|
|
nose
|
|
parameterized
|
|
shouldbe
|
|
six
|
|
];
|
|
|
|
doCheck = pythonOlder "3.8" # `shouldbe` not available
|
|
&& !stdenv.isDarwin; # many failures on darwin
|
|
|
|
# skip tests which fail possibly due to be an upstream issue (see
|
|
# https://github.com/pythongssapi/python-gssapi/issues/220)
|
|
checkPhase = ''
|
|
# some tests don't respond to being disabled through nosetests -x
|
|
echo $'\ndel CredsTestCase.test_add_with_impersonate' >> gssapi/tests/test_high_level.py
|
|
echo $'\ndel TestBaseUtilities.test_acquire_creds_impersonate_name' >> gssapi/tests/test_raw.py
|
|
echo $'\ndel TestBaseUtilities.test_add_cred_impersonate_name' >> gssapi/tests/test_raw.py
|
|
|
|
export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH"
|
|
${python.interpreter} setup.py nosetests -e 'ext_test_\d.*'
|
|
'';
|
|
pythonImportsCheck = [ "gssapi" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.python.org/pypi/gssapi";
|
|
description = "Python GSSAPI Wrapper";
|
|
license = licenses.mit;
|
|
};
|
|
}
|