python3Packages.zebrafy: drop (#518435)
This commit is contained in:
@@ -1,59 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
pillow,
|
||||
pypdfium2,
|
||||
pytest-cov-stub,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zebrafy";
|
||||
version = "1.2.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "miikanissi";
|
||||
repo = "zebrafy";
|
||||
tag = version;
|
||||
hash = "sha256-B8jrFQh5swDMfYjdMcY0Hh2VAzknDwarDKVAML6F2r4=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# fix compatibility with pypdfium2 5.x: https://github.com/miikanissi/zebrafy/pull/20
|
||||
(fetchpatch {
|
||||
url = "https://github.com/miikanissi/zebrafy/pull/20/commits/cc15c4a28d9e8aec022d22397ff752600b9ede52.patch";
|
||||
hash = "sha256-KAjfKPqmTvfoQN7YPLayPyq2sueDASyU/lMCgLCl1RU=";
|
||||
})
|
||||
];
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
pillow
|
||||
pypdfium2
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "zebrafy" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-cov-stub
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python library for converting PDF and images to and from Zebra Programming Language";
|
||||
downloadPage = "https://github.com/miikanissi/zebrafy";
|
||||
changelog = "https://github.com/miikanissi/zebrafy/releases/tag/${version}";
|
||||
homepage = "https://zebrafy.readthedocs.io/en/latest/";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
||||
};
|
||||
}
|
||||
@@ -638,6 +638,7 @@ mapAliases {
|
||||
z3 = throw "'z3' has been renamed to/replaced by 'z3-solver'"; # Converted to throw 2025-10-29
|
||||
zc-buildout221 = throw "'zc-buildout221' has been renamed to/replaced by 'zc-buildout'"; # Converted to throw 2025-10-29
|
||||
zc_lockfile = throw "'zc_lockfile' has been renamed to/replaced by 'zc-lockfile'"; # Converted to throw 2025-10-29
|
||||
zebrafy = throw "'zebrafy' has been removed due to lack of upstream maintenance"; # Added 2026-05-11
|
||||
zetup = "'zetup' has been removed because it is unmaintained"; # Added 2026-01-19
|
||||
zeversolarlocal = throw "'zeversolarlocal' has been removed because it is unmaintained"; # Added 2026-01-28
|
||||
zope_component = throw "'zope_component' has been renamed to/replaced by 'zope-component'"; # Converted to throw 2025-10-29
|
||||
|
||||
@@ -21785,8 +21785,6 @@ self: super: with self; {
|
||||
|
||||
zdaemon = callPackage ../development/python-modules/zdaemon { };
|
||||
|
||||
zebrafy = callPackage ../development/python-modules/zebrafy { };
|
||||
|
||||
zeek = (toPythonModule (pkgs.zeek.broker.override { python3 = python; })).py;
|
||||
|
||||
zeep = callPackage ../development/python-modules/zeep { };
|
||||
|
||||
Reference in New Issue
Block a user