mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 15:58:36 +00:00
pythonPackage.python-oauth2: init at 1.0.1
This commit is contained in:
parent
766bfd6d61
commit
c8300a0596
|
@ -299,6 +299,7 @@
|
|||
ivan-tkatchev = "Ivan Tkatchev <tkatchev@gmail.com>";
|
||||
ixmatus = "Parnell Springmeyer <parnell@digitalmentat.com>";
|
||||
izorkin = "Yurii Izorkin <Izorkin@gmail.com>";
|
||||
ixxie = "Matan Bendix Shenhav <matan@fluxcraft.net>";
|
||||
j-keck = "Jürgen Keck <jhyphenkeck@gmail.com>";
|
||||
jagajaga = "Arseniy Seroka <ars.seroka@gmail.com>";
|
||||
jammerful = "jammerful <jammerful@gmail.com>";
|
||||
|
|
24
pkgs/development/python-modules/python-oauth2/default.nix
Normal file
24
pkgs/development/python-modules/python-oauth2/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -9761,6 +9761,8 @@ in {
|
|||
];
|
||||
};
|
||||
|
||||
python-oauth2 = callPackage ../development/python-modules/python-oauth2 { };
|
||||
|
||||
python-Levenshtein = buildPythonPackage rec {
|
||||
name = "python-Levenshtein-${version}";
|
||||
version = "0.12.0";
|
||||
|
|
Loading…
Reference in a new issue