python313Packages.bunch: drop (#410862)

authored by

Martin Weinelt and committed by
GitHub
3a212fa7 2dd62442

+1 -41
-39
pkgs/development/python-modules/bunch/default.nix
··· 1 - { 2 - lib, 3 - buildPythonPackage, 4 - fetchFromGitHub, 5 - pythonOlder, 6 - }: 7 - 8 - buildPythonPackage { 9 - pname = "bunch"; 10 - version = "unstable-2017-11-21"; 11 - format = "setuptools"; 12 - 13 - disabled = pythonOlder "3.7"; 14 - 15 - # Use a fork as upstream is dead 16 - src = fetchFromGitHub { 17 - owner = "olivecoder"; 18 - repo = "bunch"; 19 - rev = "71ac9d5c712becd4c502ab3099203731a0f1122e"; 20 - hash = "sha256-XOgzJkcIqkAJFsKAyt2jSEIxcc0h2gFC15xy5kAs+7s="; 21 - }; 22 - 23 - postPatch = '' 24 - substituteInPlace setup.py \ 25 - --replace "rU" "r" 26 - ''; 27 - 28 - # No real tests available 29 - doCheck = false; 30 - 31 - pythonImportsCheck = [ "bunch" ]; 32 - 33 - meta = with lib; { 34 - description = "Python dictionary that provides attribute-style access"; 35 - homepage = "https://github.com/dsc/bunch"; 36 - license = licenses.mit; 37 - maintainers = [ ]; 38 - }; 39 - }
···
+1
pkgs/top-level/python-aliases.nix
··· 126 buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07 127 buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07 128 buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07 129 btsmarthub_devicelist = btsmarthub-devicelist; # added 2024-01-03 130 bt_proximity = bt-proximity; # added 2021-07-02 131 BTrees = btrees; # added 2023-02-19
··· 126 buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07 127 buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07 128 buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07 129 + bunch = throw "bunch has been removed as it is unmaintained since inception"; # added 2025-05-31 130 btsmarthub_devicelist = btsmarthub-devicelist; # added 2024-01-03 131 bt_proximity = bt-proximity; # added 2021-07-02 132 BTrees = btrees; # added 2023-02-19
-2
pkgs/top-level/python-packages.nix
··· 2202 2203 bumps = callPackage ../development/python-modules/bumps { }; 2204 2205 - bunch = callPackage ../development/python-modules/bunch { }; 2206 - 2207 bundlewrap = callPackage ../development/python-modules/bundlewrap { }; 2208 2209 bundlewrap-keepass = callPackage ../development/python-modules/bundlewrap-keepass { };
··· 2202 2203 bumps = callPackage ../development/python-modules/bumps { }; 2204 2205 bundlewrap = callPackage ../development/python-modules/bundlewrap { }; 2206 2207 bundlewrap-keepass = callPackage ../development/python-modules/bundlewrap-keepass { };