Merge pull request #54973 from trustedkey/yubico-client
pythonPackages.yubico-client: init at 1.10.0
This commit is contained in:
commit
99de000898
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/yubico-client/default.nix
Normal file
24
pkgs/development/python-modules/yubico-client/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue