nixpkgs/pkgs/development/python-modules/onetimepass/default.nix
Fabian Affolter b0cfbcb159 python312Packages.onetimepass: refactor
- switch to unittestCheckHook
2024-04-23 09:10:34 +02:00

50 lines
947 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, six
, timecop
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "onetimepass";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tadeck";
repo = "onetimepass";
rev = "refs/tags/v${version}";
hash = "sha256-cHJg3vdUpWp5+HACIeTGrqkHKUDS//aQICSjPKgwu3I=";
};
build-system = [
setuptools
];
dependencies = [
six
];
nativeCheckInputs = [
timecop
unittestCheckHook
];
pythonImportsCheck = [
"onetimepass"
];
meta = with lib; {
description = "One-time password library for HMAC-based (HOTP) and time-based (TOTP) passwords";
homepage = "https://github.com/tadeck/onetimepass";
changelog = "https://github.com/tadeck/onetimepass/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ zakame ];
};
}