python3Packages.hologram: drop
hologram's last release was in March 2023 [1], upstream has only seen negligible activity since May 2023 [2], and the package is now broken with Python 3.14 [3]. [1] https://github.com/dbt-labs/hologram/tags [2] https://github.com/dbt-labs/hologram/commits/master/ [3] https://hydra.nixos.org/build/324633389/nixlog/1
This commit is contained in:
@@ -1,58 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
jsonschema,
|
||||
pytestCheckHook,
|
||||
python-dateutil,
|
||||
setuptools,
|
||||
wheel,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hologram";
|
||||
version = "0.0.16";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dbt-labs";
|
||||
repo = "hologram";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-DboVCvByI8bTThamGBwSiQADGxIaEnTMmwmVI+4ARgc=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# https://github.com/dbt-labs/hologram/pull/58
|
||||
(fetchpatch {
|
||||
name = "python3.11-test-compatibility.patch";
|
||||
url = "https://github.com/dbt-labs/hologram/commit/84bbe862ef6a2fcc8b8ce85b5c9a006cc7dc1f66.patch";
|
||||
hash = "sha256-t096jJDoKUPED4QHSfVjUMLtUJjWcqjblCtGR8moEJc=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
jsonschema
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonRelaxDeps = [ "python-dateutil" ];
|
||||
|
||||
pythonImportsCheck = [ "hologram" ];
|
||||
|
||||
meta = {
|
||||
description = "Library for automatically generating Draft 7 JSON Schemas from Python dataclasses";
|
||||
homepage = "https://github.com/dbt-labs/hologram";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
mausch
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -242,6 +242,7 @@ mapAliases {
|
||||
hglib = throw "'hglib' has been renamed to/replaced by 'python-hglib'"; # Converted to throw 2025-10-29
|
||||
hijri-converter = hijridate; # added 2025-08-07
|
||||
holistic-trace-analysis = throw "'holistic-trace-analysis' was removed because there is no such package on PyPI"; # added 2026-02-28
|
||||
hologram = throw "'hologram' has been removed as it was unmaintained upstream"; # Added 2026-03-22
|
||||
homeassistant-bring-api = throw "'homeassistant-bring-api' has been renamed to/replaced by 'bring-api'"; # Converted to throw 2025-10-29
|
||||
HTSeq = throw "'HTSeq' has been renamed to/replaced by 'htseq'"; # Converted to throw 2025-10-29
|
||||
IMAPClient = throw "'IMAPClient' has been renamed to/replaced by 'imapclient'"; # Converted to throw 2025-10-29
|
||||
|
||||
@@ -7082,8 +7082,6 @@ self: super: with self; {
|
||||
|
||||
holidays = callPackage ../development/python-modules/holidays { };
|
||||
|
||||
hologram = callPackage ../development/python-modules/hologram { };
|
||||
|
||||
holoviews = callPackage ../development/python-modules/holoviews { };
|
||||
|
||||
home-assistant-bluetooth = callPackage ../development/python-modules/home-assistant-bluetooth { };
|
||||
|
||||
Reference in New Issue
Block a user