python313Packages.oauth{,2}: drop (#407672)
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "oauth";
|
||||
version = "1.0.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0pdgi35hczsslil4890xqawnbpdazkgf2v1443847h5hy2gq2sg7";
|
||||
};
|
||||
|
||||
# No tests included in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://code.google.com/archive/p/oauth/";
|
||||
description = "Library for OAuth version 1.0a";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
httplib2,
|
||||
mock,
|
||||
coverage,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "oauth2";
|
||||
version = "1.9.0.post1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ httplib2 ];
|
||||
buildInputs = [
|
||||
mock
|
||||
coverage
|
||||
];
|
||||
|
||||
# ServerNotFoundError: Unable to find the server at oauth-sandbox.sevengoslings.net
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/simplegeo/python-oauth2";
|
||||
description = "Library for OAuth version 1.0";
|
||||
license = licenses.mit;
|
||||
maintainers = [ ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
@@ -455,6 +455,8 @@ mapAliases ({
|
||||
notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
|
||||
Nuitka = nuitka; # added 2023-02-19
|
||||
ntlm-auth = throw "ntlm-auth has been removed, because it relies on the md4 implementation provided by openssl. Use pyspnego instead.";
|
||||
oauth = throw "oauth has been removed as it is unmaintained"; # added 2025-05-16
|
||||
oauth2 = throw "oauth2 has been removed as it is unmaintained"; # added 2025-05-16
|
||||
openai-triton = triton; # added 2024-07-18
|
||||
openai-triton-bin = triton-bin; # added 2024-07-18
|
||||
openai-triton-cuda = triton-cuda; # added 2024-07-18
|
||||
|
||||
@@ -10181,10 +10181,6 @@ self: super: with self; {
|
||||
|
||||
oath = callPackage ../development/python-modules/oath { };
|
||||
|
||||
oauth = callPackage ../development/python-modules/oauth { };
|
||||
|
||||
oauth2 = callPackage ../development/python-modules/oauth2 { };
|
||||
|
||||
oauth2client = callPackage ../development/python-modules/oauth2client { };
|
||||
|
||||
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
||||
|
||||
Reference in New Issue
Block a user