python313Packages.bunch: drop (#410862)
This commit is contained in:
@@ -1,39 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pythonOlder,
|
||||
}:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "bunch";
|
||||
version = "unstable-2017-11-21";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
# Use a fork as upstream is dead
|
||||
src = fetchFromGitHub {
|
||||
owner = "olivecoder";
|
||||
repo = "bunch";
|
||||
rev = "71ac9d5c712becd4c502ab3099203731a0f1122e";
|
||||
hash = "sha256-XOgzJkcIqkAJFsKAyt2jSEIxcc0h2gFC15xy5kAs+7s=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "rU" "r"
|
||||
'';
|
||||
|
||||
# No real tests available
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "bunch" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python dictionary that provides attribute-style access";
|
||||
homepage = "https://github.com/dsc/bunch";
|
||||
license = licenses.mit;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
@@ -126,6 +126,7 @@ mapAliases ({
|
||||
buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07
|
||||
buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07
|
||||
buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07
|
||||
bunch = throw "bunch has been removed as it is unmaintained since inception"; # added 2025-05-31
|
||||
btsmarthub_devicelist = btsmarthub-devicelist; # added 2024-01-03
|
||||
bt_proximity = bt-proximity; # added 2021-07-02
|
||||
BTrees = btrees; # added 2023-02-19
|
||||
|
||||
@@ -2202,8 +2202,6 @@ self: super: with self; {
|
||||
|
||||
bumps = callPackage ../development/python-modules/bumps { };
|
||||
|
||||
bunch = callPackage ../development/python-modules/bunch { };
|
||||
|
||||
bundlewrap = callPackage ../development/python-modules/bundlewrap { };
|
||||
|
||||
bundlewrap-keepass = callPackage ../development/python-modules/bundlewrap-keepass { };
|
||||
|
||||
Reference in New Issue
Block a user