Files
nixpkgs/pkgs/development/python-modules/onetimepass/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

32 lines
712 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, six, timecop }:
buildPythonPackage rec {
pname = "onetimepass";
version = "1.0.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "tadeck";
repo = pname;
rev = "v${version}";
sha256 = "0wmv62l3r8r4428gdzyj80lhgadfqvj220khz1wnm9alyzg60wkh";
};
propagatedBuildInputs = [
six
];
nativeCheckInputs = [
timecop
];
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";
license = licenses.mit;
maintainers = with maintainers; [ zakame ];
};
}