Merge pull request #54973 from trustedkey/yubico-client

pythonPackages.yubico-client: init at 1.10.0
This commit is contained in:
Jörg Thalheim 2019-02-08 07:16:25 +00:00 committed by GitHub
commit 99de000898
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -5073,6 +5073,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 { };