python3Packages.sixelcrop: init at 0.1.9

Co-authored-by: renesat <self@renesat.me>
This commit is contained in:
euxane
2025-09-06 02:35:01 +02:00
co-authored by renesat
parent d0fc308996
commit eb8a4b0917
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
}:
buildPythonPackage rec {
pname = "sixelcrop";
version = "0.1.9";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1sBaxPvW4gH3lK3tEjAPtCdXMXLAVEof0lpIpmpbyG8=";
};
build-system = [
hatchling
];
pythonImportsCheck = [
"sixelcrop"
];
meta = {
description = "Crop sixel images in sixel-space!";
homepage = "https://github.com/joouha/sixelcrop";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
euxane
renesat
];
};
}
+2
View File
@@ -16740,6 +16740,8 @@ self: super: with self; {
sixel = callPackage ../development/python-modules/sixel { };
sixelcrop = callPackage ../development/python-modules/sixelcrop { };
sjcl = callPackage ../development/python-modules/sjcl { };
skein = callPackage ../development/python-modules/skein { };