python.pkgs.pyotp: init at 2.2.6

This commit is contained in:
Robert Schütz
2018-08-30 17:33:05 +02:00
committed by Robin Gloster
parent fc39e5c645
commit 09cced6725
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pyotp";
version = "2.2.6";
src = fetchPypi {
inherit pname version;
sha256 = "dd9130dd91a0340d89a0f06f887dbd76dd07fb95a8886dc4bc401239f2eebd69";
};
meta = with lib; {
description = "Python One Time Password Library";
homepage = https://github.com/pyotp/pyotp;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}