1{ lib, buildPythonPackage, fetchPypi
2, requests }:
3
4buildPythonPackage rec {
5 pname = "yubico-client";
6 version = "1.13.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "e3b86cd2a123105edfacad40551c7b26e9c1193d81ffe168ee704ebfd3d11162";
11 };
12
13 propagatedBuildInputs = [ requests ];
14
15 # pypi package missing test_utils and github releases is behind
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Verifying Yubico OTPs based on the validation protocol version 2.0";
20 homepage = "https://github.com/Kami/python-yubico-client/";
21 maintainers= with maintainers; [ peterromfeldhk ];
22 license = licenses.bsd3;
23 };
24}