about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/requests-kerberos/default.nix
blob: a1c6f4fb0a1bb65904863e161cd94d9f69ccc2c3 (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
{ lib, stdenv, fetchFromGitHub, buildPythonPackage, requests, pykerberos, 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";
  };

  checkInputs = [ mock ];
  propagatedBuildInputs = [ requests pykerberos ];

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

  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 ];
  };
}