Merge pull request #239009 from natsukium/descartes/remove

python3Packages.descartes: remove
This commit is contained in:
Weijia Wang
2023-06-21 22:44:32 +03:00
committed by GitHub
3 changed files with 1 additions and 29 deletions
@@ -1,27 +0,0 @@
{ lib, buildPythonPackage, fetchPypi,
matplotlib, shapely
}:
buildPythonPackage rec {
pname = "descartes";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0nq36w9ylvfwmwn5qd9c8fsp2jzsqpmy4xcr6pzxcpmg8qhm0nhk";
};
propagatedBuildInputs = [
matplotlib
shapely
];
meta = with lib; {
description = "Python library to use Shapely or GeoJSON objects as matplotlib paths";
homepage = "https://bitbucket.org/sgillies/descartes/";
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
# all tests are failing
broken = true;
};
}
+1
View File
@@ -74,6 +74,7 @@ mapAliases ({
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
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
dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04
dictpath = pathable; # added 2023-01-28
-2
View File
@@ -2505,8 +2505,6 @@ self: super: with self; {
derpconf = callPackage ../development/python-modules/derpconf { };
descartes = callPackage ../development/python-modules/descartes { };
desktop-notifier = callPackage ../development/python-modules/desktop-notifier { };
detect-secrets = callPackage ../development/python-modules/detect-secrets { };