1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 18:16:21 +03:00
nixpkgs/pkgs/development/python-modules/requests-gssapi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
881 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
gssapi,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "requests-gssapi";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-TVK/jCqiqCkTDvzKhcFJQ/3QqnVFWquYWyuHJhWcIMo=";
};
build-system = [ setuptools ];
dependencies = [
gssapi
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "requests_gssapi" ];
meta = with lib; {
description = "GSSAPI authentication handler for python-requests";
homepage = "https://github.com/pythongssapi/requests-gssapi";
changelog = "https://github.com/pythongssapi/requests-gssapi/blob/v${version}/HISTORY.rst";
license = licenses.isc;
maintainers = with maintainers; [ javimerino ];
};
}