11 buildPythonPackage rec {
12 pname = "requests-kerberos";
15 # tests are not present in the PyPI version
16 src = fetchFromGitHub {
20 sha256 = "1qw96aw84nljh9cip372mfv50p1yyirfgigavvavgpc3c5g278s6";
23 propagatedBuildInputs = [
34 # they have a setup.py which mentions a test suite that doesn't exist...
35 patches = [ ./fix_setup.patch ];
37 pythonImportsCheck = [ "requests_kerberos" ];
40 description = "An authentication handler for using Kerberos with Python Requests";
41 homepage = "https://github.com/requests/requests-kerberos";
42 license = licenses.isc;
43 maintainers = with maintainers; [ catern ];