pythonPackages.oath: init at 1.4.3
This commit is contained in:
parent
7a53b1cbe7
commit
7dfa1f842e
21
pkgs/development/python-modules/oath/default.nix
Normal file
21
pkgs/development/python-modules/oath/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "oath";
|
||||||
|
version = "1.4.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1xqgcqgx6aa0j21hwsdb3aqpqhviwj756bcqjjjcm1h1aij11p6m";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python implementation of the three main OATH specifications: HOTP, TOTP and OCRA";
|
||||||
|
homepage = "https://github.com/bdauvergne/python-oath";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ aw ];
|
||||||
|
};
|
||||||
|
}
|
@ -745,6 +745,8 @@ in {
|
|||||||
|
|
||||||
numericalunits = callPackage ../development/python-modules/numericalunits { };
|
numericalunits = callPackage ../development/python-modules/numericalunits { };
|
||||||
|
|
||||||
|
oath = callPackage ../development/python-modules/oath { };
|
||||||
|
|
||||||
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
||||||
|
|
||||||
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user