2018-08-30 16:33:05 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyotp";
|
2020-08-16 18:31:12 +01:00
|
|
|
version = "2.4.0";
|
2018-08-30 16:33:05 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:12 +01:00
|
|
|
sha256 = "01eceab573181188fe038d001e42777884a7f5367203080ef5bda0e30fe82d28";
|
2018-08-30 16:33:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python One Time Password Library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pyotp/pyotp";
|
2018-08-30 16:33:05 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|