nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

{av-98,python3Packages.ansiwrap}: drop (#448228)

authored by

Fabian Affolter and committed by
GitHub
22bd65d9 b234919e

+2 -90
-34
pkgs/applications/networking/browsers/av-98/default.nix
··· 1 - { 2 - lib, 3 - python3Packages, 4 - fetchgit, 5 - }: 6 - python3Packages.buildPythonApplication { 7 - pname = "av-98"; 8 - version = "1.0.2dev"; 9 - format = "setuptools"; 10 - 11 - src = fetchgit { 12 - url = "https://tildegit.org/solderpunk/AV-98.git"; 13 - rev = "96cf8e13fe5714c8cdc754f51eef9f0293b8ca1f"; 14 - sha256 = "09iskh33hl5aaif763j1fmbz7yvf0yqsxycfd41scj7vbwdsbxl0"; 15 - }; 16 - 17 - propagatedBuildInputs = with python3Packages; [ 18 - ansiwrap 19 - cryptography 20 - ]; 21 - 22 - # No tests are available 23 - doCheck = false; 24 - pythonImportsCheck = [ "av98" ]; 25 - 26 - meta = with lib; { 27 - homepage = "https://tildegit.org/solderpunk/AV-98"; 28 - description = "Experimental console client for the Gemini protocol"; 29 - mainProgram = "av98"; 30 - license = licenses.bsd2; 31 - 32 - broken = true; 33 - }; 34 - }
-52
pkgs/development/python-modules/ansiwrap/default.nix
··· 1 - { 2 - lib, 3 - ansicolors, 4 - buildPythonPackage, 5 - fetchPypi, 6 - pytestCheckHook, 7 - pythonAtLeast, 8 - pythonOlder, 9 - setuptools, 10 - textwrap3, 11 - }: 12 - buildPythonPackage rec { 13 - pname = "ansiwrap"; 14 - version = "0.8.4"; 15 - pyproject = true; 16 - 17 - disabled = pythonOlder "3.7" || pythonAtLeast "3.12"; 18 - 19 - src = fetchPypi { 20 - inherit pname version; 21 - extension = "zip"; 22 - hash = "sha256-ygx0BzTN5Zv5Gfj/LDhvdPmjaYGM3GDv6UiT0B6o2bc="; 23 - }; 24 - 25 - postPatch = '' 26 - # https://github.com/jonathaneunice/ansiwrap/issues/18 27 - substituteInPlace test/test_ansiwrap.py \ 28 - --replace-fail "set(range(20, 120)).difference(LINE_LENGTHS)" "sorted(set(range(20, 120)).difference(LINE_LENGTHS))" \ 29 - --replace-fail "set(range(120, 400)).difference(LINE_LENGTHS)" "sorted(set(range(120, 400)).difference(LINE_LENGTHS))" 30 - ''; 31 - 32 - build-system = [ setuptools ]; 33 - 34 - dependencies = [ textwrap3 ]; 35 - 36 - nativeCheckInputs = [ 37 - ansicolors 38 - pytestCheckHook 39 - ]; 40 - 41 - pythonImportsCheck = [ "ansiwrap" ]; 42 - 43 - meta = with lib; { 44 - description = "Textwrap, but savvy to ANSI colors and styles"; 45 - homepage = "https://github.com/jonathaneunice/ansiwrap"; 46 - changelog = "https://github.com/jonathaneunice/ansiwrap/blob/master/CHANGES.yml"; 47 - license = licenses.asl20; 48 - maintainers = [ ]; 49 - 50 - broken = true; 51 - }; 52 - }
+1
pkgs/top-level/aliases.nix
··· 495 495 aumix = throw "'aumix' has been removed due to lack of maintenance upstream. Consider using 'pamixer' for CLI or 'pavucontrol' for GUI"; # Added 2024-09-14 496 496 authy = throw "'authy' has been removed since it reached end of life"; # Added 2024-04-19 497 497 autoadb = throw "'autoadb' has been removed due to lack of maintenance upstream"; # Added 2025-01-25 498 + av-98 = throw "'av-98' has been removed because it has been broken since at least November 2024."; # Added 2025-10-03 498 499 avldrums-lv2 = throw "'avldrums-lv2' has been renamed to/replaced by 'x42-avldrums'"; # Converted to throw 2024-10-17 499 500 avr-sim = throw "'avr-sim' has been removed as it was broken and unmaintained. Possible alternatives are 'simavr', SimulAVR and AVRStudio."; # Added 2025-05-31 500 501 axmldec = throw "'axmldec' has been removed as it was broken and unmaintained for 8 years"; # Added 2025-05-17
-2
pkgs/top-level/all-packages.nix
··· 10799 10799 10800 10800 audacious = audacious-bare.override { withPlugins = true; }; 10801 10801 10802 - av-98 = callPackage ../applications/networking/browsers/av-98 { }; 10803 - 10804 10802 bambootracker-qt6 = bambootracker.override { withQt6 = true; }; 10805 10803 10806 10804 ausweisapp = qt6Packages.callPackage ../applications/misc/ausweisapp { };
+1
pkgs/top-level/python-aliases.nix
··· 72 72 aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27 73 73 aiosenseme = throw "aiosenseme has been removed, because it does no longer work with the latest firmware and has become unmaintained"; # Added 2023-07-05 74 74 aioquic-mitmproxy = throw "aioquic-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-01-16 75 + ansiwrap = throw "ansiwrap has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03 75 76 amazon_kclpy = amazon-kclpy; # added 2023-08-08 76 77 ambiclimate = throw "ambiclimate has been removed, because the service has been terminated after 2024-03-31."; # Added 2024-06-07 77 78 ambee = throw "ambee has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04
-2
pkgs/top-level/python-packages.nix
··· 745 745 746 746 ansitable = callPackage ../development/python-modules/ansitable { }; 747 747 748 - ansiwrap = callPackage ../development/python-modules/ansiwrap { }; 749 - 750 748 anthemav = callPackage ../development/python-modules/anthemav { }; 751 749 752 750 anthropic = callPackage ../development/python-modules/anthropic { };