python3Packages.pycallgraph: drop

The project is relying on the `use_2to3` flag that was removed from
setuptools in version 58. It is also unmaintained since 2018.
This commit is contained in:
Martin Weinelt 2022-01-18 17:06:04 +01:00
parent 949c04687f
commit 155b8517d9
3 changed files with 1 additions and 30 deletions

View File

@ -1,28 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "pycallgraph";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0w8yr43scnckqcv5nbyd2dq4kpv74ai856lsdsf8iniik07jn9mi";
};
buildInputs = [ pytest ];
# Tests do not work due to this bug: https://github.com/gak/pycallgraph/issues/118
doCheck = false;
meta = with lib; {
homepage = "http://pycallgraph.slowchop.com";
description = "Call graph visualizations for Python applications";
maintainers = with maintainers; [ auntie ];
license = licenses.gpl2;
};
}

View File

@ -76,6 +76,7 @@ mapAliases ({
prometheus_client = prometheus-client; # added 2021-06-10
prompt_toolkit = prompt-toolkit; # added 2021-07-22
pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08
pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
pysmart-smartx = pysmart; # added 2021-10-22

View File

@ -6522,8 +6522,6 @@ in {
inherit (pkgs.buildPackages) meson;
};
pycallgraph = callPackage ../development/python-modules/pycallgraph { };
py = callPackage ../development/python-modules/py { };
pycangjie = callPackage ../development/python-modules/pycangjie { };