2020-10-08 02:54:23 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27 }:
|
2018-08-30 08:33:05 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyotp";
|
2020-10-25 02:06:56 -07:00
|
|
|
version = "2.4.1";
|
2020-10-08 02:54:23 -07:00
|
|
|
disabled = isPy27;
|
2018-08-30 08:33:05 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 02:06:56 -07:00
|
|
|
sha256 = "038a3f70b34eaad3f72459e8b411662ef8dfcdd95f7d9203fa489e987a75584b";
|
2018-08-30 08:33:05 -07:00
|
|
|
};
|
|
|
|
|
2020-10-08 02:54:23 -07:00
|
|
|
pythonImportsCheck = [ "pyotp" ];
|
|
|
|
|
2018-08-30 08:33:05 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Python One Time Password Library";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pyotp/pyotp";
|
2018-08-30 08:33:05 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|