python310Packages.pyramid_hawkauth: remove

Module was last released in 2018 and is unmaintained
This commit is contained in:
Fabian Affolter 2023-02-25 00:26:25 +01:00
parent 7d0ed7f2e5
commit b7fee8ecd4
3 changed files with 1 additions and 36 deletions

View File

@ -1,34 +0,0 @@
{ stdenv
, lib
, buildPythonPackage
, fetchFromGitHub
, pyramid
, hawkauthlib
, tokenlib
, webtest
}:
buildPythonPackage rec {
pname = "pyramid_hawkauth";
version = "0.1.0";
src = fetchFromGitHub {
owner = "mozilla-services";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "038ign7qlavlmvrhb2y8bygbxvy4j7bx2k1zg0i3wblg2ja50w7h";
};
propagatedBuildInputs = [ pyramid hawkauthlib tokenlib ];
buildInputs = [ webtest ];
pythonImportsCheck = [ "pyramid_hawkauth" ];
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
homepage = "https://github.com/mozilla-services/pyramid_hawkauth";
description = "A Pyramid authentication plugin for HAWK";
license = licenses.mpl20;
maintainers = with maintainers; [ ];
};
}

View File

@ -169,6 +169,7 @@ mapAliases ({
PyLD = pyld; # added 2022-06-22
pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
pyramid_hawkauth = throw "pyramid_hawkauth has been removed because it is no longer maintained"; # added 2023-02-2
pyreadability = readability-lxml; # added 2022-05-24
pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16

View File

@ -8695,8 +8695,6 @@ self: super: with self; {
pyramid_exclog = callPackage ../development/python-modules/pyramid_exclog { };
pyramid_hawkauth = callPackage ../development/python-modules/pyramid_hawkauth { };
pyramid_jinja2 = callPackage ../development/python-modules/pyramid_jinja2 { };
pyramid_mako = callPackage ../development/python-modules/pyramid_mako { };