forked from mirrors/nixpkgs
36 lines
791 B
Nix
36 lines
791 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, pytest
|
||
|
, mock
|
||
|
, cryptography
|
||
|
, requests
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
version = "0.13";
|
||
|
pname = "authlib";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "lepture";
|
||
|
repo = "authlib";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1nv0jbsaqr9qjn7nnl55s42iyx655k7fsj8hs69652lqnfn5y3d5";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ cryptography requests ];
|
||
|
|
||
|
checkInputs = [ mock pytest ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
PYTHONPATH=$PWD:$PYTHONPATH pytest tests/{core,files}
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://github.com/lepture/authlib;
|
||
|
description = "The ultimate Python library in building OAuth and OpenID Connect servers. JWS,JWE,JWK,JWA,JWT included.";
|
||
|
maintainers = with maintainers; [ flokli ];
|
||
|
license = licenses.bsd3;
|
||
|
};
|
||
|
}
|