mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
47 lines
866 B
Nix
47 lines
866 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cryptography
|
|
, boto3
|
|
, envs
|
|
, python-jose
|
|
, requests
|
|
, mock
|
|
, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycognito";
|
|
version = "0.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pvizeli";
|
|
repo = "pycognito";
|
|
rev = version;
|
|
sha256 = "HLzPrRon+ipcUZlD1l4nYSwSbdDLwOALy4ejGunjK0w=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace 'python-jose[cryptography]' 'python-jose'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
envs
|
|
python-jose
|
|
requests
|
|
];
|
|
|
|
disabled = isPy27;
|
|
|
|
checkInputs = [ mock ];
|
|
|
|
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 = [ maintainers.mic92 ];
|
|
};
|
|
}
|