diff options
| author | Matan Shenhav <matan@fluxcraft.net> | 2018-01-20 13:54:05 +0000 |
|---|---|---|
| committer | Matan Shenhav <matan@fluxcraft.net> | 2018-01-20 13:54:05 +0000 |
| commit | c8300a059687ba2d61614229b45d0c8e4ff121e2 (patch) | |
| tree | 1bcae0b08d39beaf0a2e3f29a1b6bf4a15e23495 /pkgs/development/python-modules | |
| parent | 766bfd6d618e860c185e53f28a1cc61ef627cbd6 (diff) | |
pythonPackage.python-oauth2: init at 1.0.1
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/python-oauth2/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-oauth2/default.nix b/pkgs/development/python-modules/python-oauth2/default.nix new file mode 100644 index 000000000000..38649ca19859 --- /dev/null +++ b/pkgs/development/python-modules/python-oauth2/default.nix @@ -0,0 +1,24 @@ +{ lib +, python +, buildPythonPackage +, fetchPypi +}: + +buildPythonPackage rec { + pname = "python-oauth2"; + version = "1.0.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "0a1d0qnlgm07wq9r9bbm5jqkqry73w34m87p0141bk76lg7bb0sm"; + }; + # attempts to run mysql + doCheck = false; + + meta = with lib; { + description = "Framework that aims at making it easy to provide authentication via OAuth 2.0 within an application stack"; + homepage = https://github.com/wndhydrnt/python-oauth2; + license = licenses.mit; + maintainers = with maintainers; [ ixxie ]; + }; +} |
