Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-oauth2"; 8 version = "1.1.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "b24da812837c19183df1924e80a22ba0a1869582dea8b04a9ecd807b04dbc525"; 13 }; 14 # attempts to run mysql 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Framework that aims at making it easy to provide authentication via OAuth 2.0 within an application stack"; 19 homepage = https://github.com/wndhydrnt/python-oauth2; 20 license = licenses.mit; 21 maintainers = with maintainers; [ ixxie ]; 22 }; 23}