python311Packages.deep_merge: remove

It is no longer maintained and is not needed for other packages.
This commit is contained in:
natsukium 2023-10-09 17:27:00 +09:00
parent 88cb436dd5
commit e53e036331
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 26 deletions

View File

@ -1,24 +0,0 @@
{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "deep_merge";
version = "0.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "tUQV+Qk0xC4zQRTihky01OczWzStOW41rYYQyWBlpH4=";
};
nativeCheckInputs = [
nose
];
doCheck = false;
meta = with lib; {
description = "This library contains a simple utility for deep-merging dictionaries and the data structures they contain";
homepage = "https://github.com/halfak/deep_merge";
license = licenses.mit;
maintainers = [ maintainers.anhdle14 ];
};
}

View File

@ -85,6 +85,7 @@ mapAliases ({
d2to1 = throw "d2to1 is archived and no longer works with setuptools v68"; # added 2023-07-30
dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
dateutil = python-dateutil; # added 2021-07-03
deep_merge = throw "deep_merge has been removed, since it is no longer maintained and may be broken."; # added 2023-10-09
demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
descartes = throw "descartes has been removed, since it is abandoned and broken"; # added 2023-06-21
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04

View File

@ -2655,8 +2655,6 @@ self: super: with self; {
deep-chainmap = callPackage ../development/python-modules/deep-chainmap { };
deep_merge = callPackage ../development/python-modules/deep_merge { };
deepdiff = callPackage ../development/python-modules/deepdiff { };
deepdish = callPackage ../development/python-modules/deepdish { };