pythonPackages.pyotp: disable on Python27

This commit is contained in:
IvarWithoutBones 2020-10-08 11:54:23 +02:00
parent 1687c719f8
commit 7a34808502

View File

@ -1,14 +1,17 @@
{ lib, buildPythonPackage, fetchPypi }: { lib, buildPythonPackage, fetchPypi, isPy27 }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyotp"; pname = "pyotp";
version = "2.4.0"; version = "2.4.0";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "01eceab573181188fe038d001e42777884a7f5367203080ef5bda0e30fe82d28"; sha256 = "01eceab573181188fe038d001e42777884a7f5367203080ef5bda0e30fe82d28";
}; };
pythonImportsCheck = [ "pyotp" ];
meta = with lib; { meta = with lib; {
description = "Python One Time Password Library"; description = "Python One Time Password Library";
homepage = "https://github.com/pyotp/pyotp"; homepage = "https://github.com/pyotp/pyotp";