pythonPackages.yubico-client: init at 1.10.0

This commit is contained in:
Peter Romfeld 2019-01-31 11:15:05 +08:00
parent 8b85a86023
commit 1ad85dd41d
No known key found for this signature in database
GPG Key ID: D10E6F3F15306D73
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi
, requests }:
buildPythonPackage rec {
pname = "yubico-client";
version = "1.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "0skkmrpvpb1pwyqjf3lh9vq46xagvwdx9kagpdbba2v5dgrk34d1";
};
propagatedBuildInputs = [ requests ];
# pypi package missing test_utils and github releases is behind
doCheck = false;
meta = with lib; {
description = "Verifying Yubico OTPs based on the validation protocol version 2.0";
homepage = https://github.com/Kami/python-yubico-client/;
maintainers= with maintainers; [ peterromfeldhk ];
license = licenses.bsd3;
};
}

View File

@ -5061,6 +5061,8 @@ in {
yowsup = callPackage ../development/python-modules/yowsup { };
yubico-client = callPackage ../development/python-modules/yubico-client { };
wptserve = callPackage ../development/python-modules/wptserve { };
yenc = callPackage ../development/python-modules/yenc { };