Commit eb8a4b09 authored by euxane's avatar euxane
Browse files

python3Packages.sixelcrop: init at 0.1.9



Co-authored-by: default avatarrenesat <self@renesat.me>
parent d0fc3089
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };