Merge pull request #330399 from Sigmanificient/webhelpers-remove
python3Packages.webhelpers: drop
This commit is contained in:
commit
afb161a60d
@ -1,37 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
routes,
|
||||
markupsafe,
|
||||
webob,
|
||||
nose,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "webhelpers";
|
||||
version = "1.3";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "WebHelpers";
|
||||
inherit version;
|
||||
sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
routes
|
||||
markupsafe
|
||||
webob
|
||||
nose
|
||||
];
|
||||
|
||||
# TODO: failing tests https://bitbucket.org/bbangert/webhelpers/pull-request/1/fix-error-on-webob-123/diff
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://webhelpers.readthedocs.org/en/latest/";
|
||||
description = "Web Helpers";
|
||||
license = licenses.free;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
}
|
@ -612,6 +612,7 @@ mapAliases ({
|
||||
weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01
|
||||
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
|
||||
weboob = throw "weboob has been removed, please use woob instead"; # added 2024-07-27
|
||||
webhelpers = throw "webhelpers has been removed because it is unmaintained and upstream is gone"; # added 2024-07-27
|
||||
websocket_client = websocket-client; # added 2021-06-15
|
||||
word2vec = throw "word2vec has been removed because it is abandoned"; # added 2023-05-22
|
||||
wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxpython instead"; # added 2023-03-19
|
||||
|
@ -17258,8 +17258,6 @@ self: super: with self; {
|
||||
|
||||
webexteamssdk = callPackage ../development/python-modules/webexteamssdk { };
|
||||
|
||||
webhelpers = callPackage ../development/python-modules/webhelpers { };
|
||||
|
||||
webob = callPackage ../development/python-modules/webob { };
|
||||
|
||||
webrtc-noise-gain = callPackage ../development/python-modules/webrtc-noise-gain { };
|
||||
|
Loading…
Reference in New Issue
Block a user