pythonPackage.python-oauth2: init at 1.0.1

+27
+1
lib/maintainers.nix
··· 299 299 ivan-tkatchev = "Ivan Tkatchev <tkatchev@gmail.com>"; 300 300 ixmatus = "Parnell Springmeyer <parnell@digitalmentat.com>"; 301 301 izorkin = "Yurii Izorkin <Izorkin@gmail.com>"; 302 + ixxie = "Matan Bendix Shenhav <matan@fluxcraft.net>"; 302 303 j-keck = "Jürgen Keck <jhyphenkeck@gmail.com>"; 303 304 jagajaga = "Arseniy Seroka <ars.seroka@gmail.com>"; 304 305 jammerful = "jammerful <jammerful@gmail.com>";
+24
pkgs/development/python-modules/python-oauth2/default.nix
··· 1 + { lib 2 + , python 3 + , buildPythonPackage 4 + , fetchPypi 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "python-oauth2"; 9 + version = "1.0.1"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "0a1d0qnlgm07wq9r9bbm5jqkqry73w34m87p0141bk76lg7bb0sm"; 14 + }; 15 + # attempts to run mysql 16 + doCheck = false; 17 + 18 + meta = with lib; { 19 + description = "Framework that aims at making it easy to provide authentication via OAuth 2.0 within an application stack"; 20 + homepage = https://github.com/wndhydrnt/python-oauth2; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ ixxie ]; 23 + }; 24 + }
+2
pkgs/top-level/python-packages.nix
··· 9761 9761 ]; 9762 9762 }; 9763 9763 9764 + python-oauth2 = callPackage ../development/python-modules/python-oauth2 { }; 9765 + 9764 9766 python-Levenshtein = buildPythonPackage rec { 9765 9767 name = "python-Levenshtein-${version}"; 9766 9768 version = "0.12.0";