ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / python-modules / oath / default.nix
blob3eb51d6866fead9f2873b0d89b619154391bfb4b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "oath";
10   version = "1.4.4";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-vWsg0g8sTj9TUj7pACEdynWu7KcvT1qf2NyswXX+HAs=";
16   };
17   nativeCheckInputs = [ pytestCheckHook ];
19   pythonImportsCheck = [ "oath" ];
21   meta = with lib; {
22     description = "Python implementation of the three main OATH specifications: HOTP, TOTP and OCRA";
23     homepage = "https://github.com/bdauvergne/python-oath";
24     license = licenses.bsd3;
25     maintainers = with maintainers; [ aw ];
26   };