depot/third_party/nixpkgs/pkgs/development/python-modules/requests-kerberos/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

54 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
pykerberos,
pyspnego,
pytest-mock,
pytestCheckHook,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "requests-kerberos";
version = "0.14.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "requests";
repo = pname;
rev = "v${version}";
hash = "sha256-Y9dTzFCgVmSnbnTE0kEfjpEkXDEA+uOqFHLkSC27YGg=";
};
propagatedBuildInputs = [
cryptography
requests
pykerberos
pyspnego
];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
];
# avoid needing to package krb5
postPatch = ''
substituteInPlace setup.py \
--replace "pyspnego[kerberos]" "pyspnego"
'';
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 ];
};
}