Loading pkgs/development/python-modules/requests-gssapi/default.nix 0 → 100644 +47 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , gssapi , pytestCheckHook , pythonOlder , requests , setuptools }: buildPythonPackage rec { pname = "requests-gssapi"; version = "1.2.3"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-IHhFCJgUAfcVPJM+7QlTOJM6QIGNplolnb8tgNzLFQ4="; }; build-system = [ setuptools ]; dependencies = [ gssapi requests ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportCheck = [ "requests_gssapi" ]; meta = with lib; { description = "A 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12907,6 +12907,8 @@ self: super: with self; { requests-credssp = callPackage ../development/python-modules/requests-credssp { }; requests-gssapi = callPackage ../development/python-modules/requests-gssapi { }; requests-hawk = callPackage ../development/python-modules/requests-hawk { }; requests = callPackage ../development/python-modules/requests { }; Loading Loading
pkgs/development/python-modules/requests-gssapi/default.nix 0 → 100644 +47 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , gssapi , pytestCheckHook , pythonOlder , requests , setuptools }: buildPythonPackage rec { pname = "requests-gssapi"; version = "1.2.3"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-IHhFCJgUAfcVPJM+7QlTOJM6QIGNplolnb8tgNzLFQ4="; }; build-system = [ setuptools ]; dependencies = [ gssapi requests ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportCheck = [ "requests_gssapi" ]; meta = with lib; { description = "A 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12907,6 +12907,8 @@ self: super: with self; { requests-credssp = callPackage ../development/python-modules/requests-credssp { }; requests-gssapi = callPackage ../development/python-modules/requests-gssapi { }; requests-hawk = callPackage ../development/python-modules/requests-hawk { }; requests = callPackage ../development/python-modules/requests { }; Loading