83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, boto3
|
|
, buildPythonPackage
|
|
, envs
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, freezegun
|
|
, mock
|
|
, moto
|
|
, pytestCheckHook
|
|
, python-jose
|
|
, requests
|
|
, requests-mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycognito";
|
|
version = "2022.12.0";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pvizeli";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-WepDna9f3Z3dBxWdE6G7nbl3yPK5vMG+7X1rxbZwdjE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
envs
|
|
python-jose
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
mock
|
|
moto
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace 'python-jose[cryptography]' 'python-jose'
|
|
'';
|
|
|
|
pytestFlagsArray = [ "tests.py" ];
|
|
|
|
pythonImportsCheck = [ "pycognito" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python class to integrate Boto3's Cognito client so it is easy to login users. With SRP support";
|
|
homepage = "https://github.com/pvizeli/pycognito";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
}
|