mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
22 lines
493 B
Nix
22 lines
493 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oath";
|
|
version = "1.4.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1xqgcqgx6aa0j21hwsdb3aqpqhviwj756bcqjjjcm1h1aij11p6m";
|
|
};
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|