about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/requests-kerberos/default.nix
blob: 0a023dab871498aa9898e66340d1800a19c366d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, fetchFromGitHub
, buildPythonPackage
, cryptography
, requests
, pykerberos
, pytestCheckHook
, mock
}:

buildPythonPackage rec {
  pname = "requests-kerberos";
  version = "0.12.0";

  # tests are not present in the PyPI version
  src = fetchFromGitHub {
    owner = "requests";
    repo = pname;
    rev = "v${version}";
    sha256 = "1qw96aw84nljh9cip372mfv50p1yyirfgigavvavgpc3c5g278s6";
  };

  propagatedBuildInputs = [
    cryptography
    requests
    pykerberos
  ];

  checkInputs = [
    mock
    pytestCheckHook
  ];

  # they have a setup.py which mentions a test suite that doesn't exist...
  patches = [ ./fix_setup.patch ];

  pythonImportsCheck = [ "requests_kerberos" ];

  meta = with lib; {
    description = "An authentication handler for using Kerberos with Python Requests";
    homepage = "https://github.com/requests/requests-kerberos";
    license = licenses.isc;
    maintainers = with maintainers; [ catern ];
  };
}