Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / yubico-client / default.nix
blobe8457055c1808ccf13ad13fc4be4ebfa2d4b7f17
1 { lib, buildPythonPackage, fetchPypi
2 , requests }:
4 buildPythonPackage rec {
5   pname = "yubico-client";
6   version = "1.13.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "e3b86cd2a123105edfacad40551c7b26e9c1193d81ffe168ee704ebfd3d11162";
11   };
13   propagatedBuildInputs = [ requests ];
15   # pypi package missing test_utils and github releases is behind
16   doCheck = false;
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   };