mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
python312Packages.onetimepass: refactor
- switch to unittestCheckHook
This commit is contained in:
parent
7a4f45d7cf
commit
b0cfbcb159
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user