12 buildPythonPackage rec {
13 pname = "requests-credssp";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
23 hash = "sha256-HHLEmQ+mNjMjpR6J+emrKFM+2PiYq32o7Gnoo0gUrNA=";
26 propagatedBuildInputs = [
32 nativeCheckInputs = [ pytestCheckHook ];
34 optional-dependencies = {
35 kerberos = pyspnego.optional-dependencies.kerberos;
38 pythonImportsCheck = [ "requests_credssp" ];
41 description = "HTTPS CredSSP authentication with the requests library";
42 homepage = "https://github.com/jborean93/requests-credssp";
43 license = licenses.mit;
44 maintainers = with maintainers; [ fab ];