mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
python312Packages.aiohttp-isal: drop
"This library is obsolete and replaced by https://github.com/bdraco/aiohttp-fast-zlib"
This commit is contained in:
parent
73af18ee3d
commit
f61999af9c
3 changed files with 1 additions and 53 deletions
|
@ -1,51 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
buildPythonPackage,
|
|
||||||
fetchFromGitHub,
|
|
||||||
|
|
||||||
# build-system
|
|
||||||
poetry-core,
|
|
||||||
|
|
||||||
# dependencies
|
|
||||||
aiohttp,
|
|
||||||
isal,
|
|
||||||
|
|
||||||
# tests
|
|
||||||
pytestCheckHook,
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "aiohttp-isal";
|
|
||||||
version = "0.3.2";
|
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "bdraco";
|
|
||||||
repo = "aiohttp-isal";
|
|
||||||
rev = "refs/tags/v${version}";
|
|
||||||
hash = "sha256-sAtAzqMJoKryhB8q/TxqgFE+Z4Uxxw0hghk/Y2VNvx0=";
|
|
||||||
};
|
|
||||||
|
|
||||||
build-system = [ poetry-core ];
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
aiohttp
|
|
||||||
isal
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
|
||||||
|
|
||||||
preCheck = ''
|
|
||||||
sed -i '/addopts/d' pyproject.toml
|
|
||||||
'';
|
|
||||||
|
|
||||||
pythonImportsCheck = [ "aiohttp_isal" ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
changelog = "https://github.com/bdraco/aiohttp-isal/blob/${src.rev}/CHANGELOG.md";
|
|
||||||
description = "Isal support for aiohttp";
|
|
||||||
homepage = "https://github.com/bdraco/aiohttp-isal";
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ hexa ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -38,6 +38,7 @@ mapAliases ({
|
||||||
acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19
|
acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19
|
||||||
adafruit-nrfutil = throw "adafruit-nrfutil has been promoted to a top-level attribute name: `pkgs.adafruit-nrfutil`."; # Added 2023-11-19
|
adafruit-nrfutil = throw "adafruit-nrfutil has been promoted to a top-level attribute name: `pkgs.adafruit-nrfutil`."; # Added 2023-11-19
|
||||||
aioaladdinconnect = throw "aioaladdinconnect has been removed, as the API is supported was obsoleted on 2024-01-24."; # Added 2024-06-07
|
aioaladdinconnect = throw "aioaladdinconnect has been removed, as the API is supported was obsoleted on 2024-01-24."; # Added 2024-06-07
|
||||||
|
aiohttp-isal = throw "aiohttp-isal has been removed, as it has been archived and replace by aiohttp-fast-zlib"; # Added 2024-08-11
|
||||||
aiomysensors = throw "aiomysensors has been removed, as it was packaged for Home Assistant, which migrated to pymysensors."; # Added 2024-07-07
|
aiomysensors = throw "aiomysensors has been removed, as it was packaged for Home Assistant, which migrated to pymysensors."; # Added 2024-07-07
|
||||||
aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30
|
aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30
|
||||||
aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27
|
aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27
|
||||||
|
|
|
@ -247,8 +247,6 @@ self: super: with self; {
|
||||||
|
|
||||||
aiohttp-fast-zlib = callPackage ../development/python-modules/aiohttp-fast-zlib { };
|
aiohttp-fast-zlib = callPackage ../development/python-modules/aiohttp-fast-zlib { };
|
||||||
|
|
||||||
aiohttp-isal = callPackage ../development/python-modules/aiohttp-isal { };
|
|
||||||
|
|
||||||
aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };
|
aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };
|
||||||
|
|
||||||
aiohttp-middlewares = callPackage ../development/python-modules/aiohttp-middlewares { };
|
aiohttp-middlewares = callPackage ../development/python-modules/aiohttp-middlewares { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue