emacsPackages.treemacs: replace python3 program (#364623)
[NixPkgs.git] / pkgs / development / python-modules / yubico-client / default.nix
blobc32239120ba7e44f4729b5992a8c029d630fe7a0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "yubico-client";
10   version = "1.13.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "e3b86cd2a123105edfacad40551c7b26e9c1193d81ffe168ee704ebfd3d11162";
16   };
18   propagatedBuildInputs = [ requests ];
20   # pypi package missing test_utils and github releases is behind
21   doCheck = false;
23   meta = with lib; {
24     description = "Verifying Yubico OTPs based on the validation protocol version 2.0";
25     homepage = "https://github.com/Kami/python-yubico-client/";
26     maintainers = with maintainers; [ peterromfeldhk ];
27     license = licenses.bsd3;
28   };