python312Packages.onetimepass: refactor

- switch to unittestCheckHook
This commit is contained in:
Fabian Affolter 2024-04-23 09:10:34 +02:00
parent 7a4f45d7cf
commit b0cfbcb159
1 changed files with 25 additions and 7 deletions

View File

@ -1,30 +1,48 @@
{ lib, buildPythonPackage, fetchFromGitHub, six, timecop }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, six
, timecop
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "onetimepass";
version = "1.0.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tadeck";
repo = pname;
rev = "v${version}";
sha256 = "0wmv62l3r8r4428gdzyj80lhgadfqvj220khz1wnm9alyzg60wkh";
repo = "onetimepass";
rev = "refs/tags/v${version}";
hash = "sha256-cHJg3vdUpWp5+HACIeTGrqkHKUDS//aQICSjPKgwu3I=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
six
];
nativeCheckInputs = [
timecop
unittestCheckHook
];
pythonImportsCheck = [ "onetimepass" ];
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 ];
};