diff --git a/pkgs/development/python-modules/chromaprint/default.nix b/pkgs/development/python-modules/chromaprint/default.nix deleted file mode 100644 index 139eba2b6960..000000000000 --- a/pkgs/development/python-modules/chromaprint/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - isPy27, - m2r, -}: - -buildPythonPackage rec { - pname = "chromaprint"; - version = "0.5"; - format = "setuptools"; - - disabled = isPy27; - - src = fetchPypi { - inherit pname version; - hash = "sha256-d4M+ieNQpIXcnEH1WyIWnTYZe3P+Y58W0uz1uYPwLQE="; - }; - - buildInputs = [ m2r ]; - - # no tests - doCheck = false; - - pythonImportsCheck = [ "chromaprint" ]; - - meta = { - description = "Facilitate effortless color terminal output"; - homepage = "https://pypi.org/project/${pname}/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ - dschrempf - peterhoeg - ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 9a32045bd131..760280221a0e 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -131,6 +131,7 @@ mapAliases { cchardet = throw "'cchardet' has been renamed to/replaced by 'faust-cchardet'"; # Converted to throw 2025-10-29 characteristic = throw "'characteristic' has been removed because it is no longer maintained upstream"; # Added 2026-01-14 chart-studio = throw "'chart-studio' has been removed as it is no longer maintained upstream"; # Added 2026-03-12 + chromeprint = throw "'chromaprint' was removed as it depended on m2r which was removed."; # Added 2026-05-27 cirq-rigetti = throw "cirq-rigetti was removed because it is no longer provided by upstream"; # added 2025-09-13 class-registry = throw "'class-registry' has been renamed to/replaced by 'phx-class-registry'"; # Converted to throw 2025-10-29 ColanderAlchemy = throw "'ColanderAlchemy' has been renamed to/replaced by 'colanderalchemy'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ab9c91f5b506..f9cea08d2077 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2745,8 +2745,6 @@ self: super: with self; { chromadb = callPackage ../development/python-modules/chromadb { zstd-c = pkgs.zstd; }; - chromaprint = callPackage ../development/python-modules/chromaprint { }; - ci-info = callPackage ../development/python-modules/ci-info { }; ci-py = callPackage ../development/python-modules/ci-py { };