nixpkgs/pkgs/development/python-modules/pycognito/default.nix
2021-04-11 12:08:45 +02:00

53 lines
984 B
Nix

{ lib
, boto3
, buildPythonPackage
, envs
, fetchFromGitHub
, isPy27
, mock
, pytestCheckHook
, python-jose
, requests
}:
buildPythonPackage rec {
pname = "pycognito";
version = "2021.03.1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "pvizeli";
repo = pname;
rev = version;
sha256 = "sha256-V3R6i1/FZrjcfRqJhczjURr/+x++iCvZ3aCK9wdEL1A=";
};
propagatedBuildInputs = [
boto3
envs
python-jose
requests
];
checkInputs = [
mock
pytestCheckHook
];
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 ];
};
}